Fix group sidebar sort order

This commit is contained in:
Natsumi
2025-02-02 18:36:40 +13:00
parent e5d900b364
commit 6cc10ad8af
4 changed files with 24 additions and 4 deletions

View File

@@ -7,7 +7,7 @@ const buildDir = path.join(rootDir, 'build');
let version = '';
try {
version = fs.readFileSync(versionFilePath, 'utf8').trim();
version = fs.readFileSync(versionFilePath, 'utf8').trim().replaceAll('.', '');
} catch (err) {
console.error('Error reading Version file:', err);
process.exit(1);