feat: adding slider to achievement sound

This commit is contained in:
Chubby Granny Chaser
2025-11-10 22:55:17 +00:00
parent 482d9b2f96
commit 399669a94c
11 changed files with 233 additions and 168 deletions

View File

@@ -32,6 +32,7 @@ const copyThemeAchievementSound = async (
await themesSublevel.put(themeId, {
...theme,
hasCustomSound: true,
originalSoundPath: sourcePath,
updatedAt: new Date(),
});
};

View File

@@ -31,6 +31,7 @@ const removeThemeAchievementSound = async (
await themesSublevel.put(themeId, {
...theme,
hasCustomSound: false,
originalSoundPath: undefined,
updatedAt: new Date(),
});
};