From 584bd42f871d2e1618ca414749f09c38f0143a44 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 18 May 2022 22:40:59 +0200 Subject: chore: handle settings change --- src/utils/providers/prism-theme.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils/providers/prism-theme.tsx') diff --git a/src/utils/providers/prism-theme.tsx b/src/utils/providers/prism-theme.tsx index 62bcf56..23a2a36 100644 --- a/src/utils/providers/prism-theme.tsx +++ b/src/utils/providers/prism-theme.tsx @@ -55,7 +55,7 @@ const isValidTheme = (theme: string): boolean => { const getTheme = (key: string): PrismTheme | undefined => { if (typeof window === 'undefined') return undefined; - const storageValue = LocalStorage.get(key); + const storageValue = LocalStorage.get(key); return storageValue && isValidTheme(storageValue) ? (storageValue as PrismTheme) -- cgit v1.2.3