chore: typescript fixes and quality of life improvements and formatting

This commit is contained in:
Ralph Khreish
2025-08-27 17:07:41 +02:00
parent fb44c58a23
commit fc46a12449
8 changed files with 143 additions and 101 deletions

View File

@@ -196,14 +196,14 @@ export class ConfigManager {
* Get the currently active tag
*/
getActiveTag(): string {
return this.stateManager.getActiveTag();
return this.stateManager.getCurrentTag();
}
/**
* Set the active tag
*/
async setActiveTag(tag: string): Promise<void> {
await this.stateManager.setActiveTag(tag);
await this.stateManager.setCurrentTag(tag);
}
// ==================== Configuration Updates ====================