Fixed bar chart rendering.

This commit is contained in:
Mike Cao 2025-06-18 21:31:42 -07:00
parent 96fcdefeed
commit 3a737e7e25
5 changed files with 47 additions and 15 deletions

View file

@ -11,7 +11,7 @@ const messages = {
'en-US': enUS,
};
const selector = (state: { locale: any }) => state.locale;
const selector = (state: { locale: string }) => state.locale;
export function useLocale() {
const locale = useApp(selector);