From 96deeba222d71a7b8a577946bcecd9486c240944 Mon Sep 17 00:00:00 2001 From: Akane Oba <128212558+akanex115@users.noreply.github.com> Date: Mon, 11 Nov 2024 23:20:15 +0900 Subject: [PATCH] Update src/recoil/app-theme/app-theme.state.ts Co-authored-by: Aaron Jeongwoo Kim <53258958+mlajkim@users.noreply.github.com> --- src/recoil/app-theme/app-theme.state.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/recoil/app-theme/app-theme.state.ts b/src/recoil/app-theme/app-theme.state.ts index 5a51bdc..ecaa07b 100644 --- a/src/recoil/app-theme/app-theme.state.ts +++ b/src/recoil/app-theme/app-theme.state.ts @@ -37,6 +37,6 @@ const defaultTheme = ((): AppTheme => { export const appThemeState = atom({ key: Rkp.AppTheme, - //default: defaultTheme, - default: AppTheme.Christmas, // You can always override the default theme here, and compile will fail if you forget to remove it + default: defaultTheme, + // default: AppTheme.Christmas, // You can always override the default theme here, and compile will fail if you forget to remove it })