about summary refs log tree commit diff
path: root/src/state/service-config.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/state/service-config.tsx')
-rw-r--r--src/state/service-config.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/state/service-config.tsx b/src/state/service-config.tsx
index 37d5685bd..94be5b445 100644
--- a/src/state/service-config.tsx
+++ b/src/state/service-config.tsx
@@ -16,8 +16,10 @@ type LiveNowContext = {
 const TrendingContext = createContext<TrendingContext>({
   enabled: false,
 })
+TrendingContext.displayName = 'TrendingContext'
 
 const LiveNowContext = createContext<LiveNowContext | null>(null)
+LiveNowContext.displayName = 'LiveNowContext'
 
 export function Provider({children}: {children: React.ReactNode}) {
   const langPrefs = useLanguagePrefs()