diff --git a/front/src/composables/useTheme.ts b/front/src/composables/useTheme.ts index ab8cdd1c7..cfe3e9d2d 100644 --- a/front/src/composables/useTheme.ts +++ b/front/src/composables/useTheme.ts @@ -6,7 +6,8 @@ const theme = useColorMode({ auto: '', light: 'theme-light', dark: 'theme-dark' - } + }, + emitAuto: true }) export default () => theme