diff --git a/packages/nc-gui/composables/useTheme/index.ts b/packages/nc-gui/composables/useTheme/index.ts index 373ba8e922..b980b5d0e0 100644 --- a/packages/nc-gui/composables/useTheme/index.ts +++ b/packages/nc-gui/composables/useTheme/index.ts @@ -16,7 +16,7 @@ export const useTheme = createGlobalState((config?: Partial) => { /** set initial config */ setTheme(config ?? currentTheme.value) - /** set theme (persists in localstorage) */ + /** set theme */ function setTheme(theme?: Partial) { const themePrimary = theme?.primaryColor ? tinycolor(theme.primaryColor) : tinycolor(themeV2Colors['royal-blue'].DEFAULT) const themeAccent = theme?.accentColor ? tinycolor(theme.accentColor) : tinycolor(themeV2Colors.pink['500'])