diff --git a/src/utils.ts b/src/utils.ts index da478eb..439b4fa 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -74,8 +74,8 @@ export const wrapThemeDefaultSounds: (theme: Theme) => void = (theme) => { for (const icon of theme.icons) { if (!icon.clickSound) icon.clickSound = 'button-click'; if (!icon.tripleSound) icon.tripleSound = 'triple'; - if (icon.clickSound === 'button-click') hasUseDefaultTriple = true; - if (icon.tripleSound === 'triple') hasUseDefaultClick = true; + if (icon.clickSound === 'button-click') hasUseDefaultClick = true; + if (icon.tripleSound === 'triple') hasUseDefaultTriple = true; } if ( hasUseDefaultClick &&