Refactor InstalledScriptsTab for code style consistency

Updated InstalledScriptsTab.tsx to use double quotes and consistent formatting throughout the file. Improved type annotations, code readability, and standardized state initialization and mutation usage. No functional changes were made; this is a style and maintainability refactor.
This commit is contained in:
CanbiZ
2025-11-28 12:16:18 +01:00
parent b5bce88398
commit c266c4cb3c
2 changed files with 1267 additions and 837 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -398,7 +398,6 @@ export class GitHubJsonService {
const filesToSync: GitHubFile[] = [];
for (const ghFile of githubFiles) {
const slug = ghFile.name.replace('.json', '');
const localFilePath = join(this.localJsonDirectory!, ghFile.name);
let needsSync = false;