diff options
Diffstat (limited to 'src/view/screens/Storybook/Dialogs.tsx')
-rw-r--r-- | src/view/screens/Storybook/Dialogs.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/screens/Storybook/Dialogs.tsx b/src/view/screens/Storybook/Dialogs.tsx index 4b4d4191f..3c1d4f20b 100644 --- a/src/view/screens/Storybook/Dialogs.tsx +++ b/src/view/screens/Storybook/Dialogs.tsx @@ -22,7 +22,7 @@ export function Dialogs() { React.useState<boolean>() const [shouldRenderUnmountTest, setShouldRenderUnmountTest] = React.useState(false) - const unmountTestInterval = React.useRef<number>() + const unmountTestInterval = React.useRef<number>(undefined) const onUnmountTestStartPressWithClose = () => { setShouldRenderUnmountTest(true) |