about summary refs log tree commit diff
path: root/src/state/shell/tick-every-minute.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/state/shell/tick-every-minute.tsx')
-rw-r--r--src/state/shell/tick-every-minute.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/state/shell/tick-every-minute.tsx b/src/state/shell/tick-every-minute.tsx
index c37221c90..d4978470e 100644
--- a/src/state/shell/tick-every-minute.tsx
+++ b/src/state/shell/tick-every-minute.tsx
@@ -3,6 +3,7 @@ import React from 'react'
 type StateContext = number
 
 const stateContext = React.createContext<StateContext>(0)
+stateContext.displayName = 'TickEveryMinuteContext'
 
 export function Provider({children}: React.PropsWithChildren<{}>) {
   const [tick, setTick] = React.useState(Date.now())