We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c8962e commit dae9a87Copy full SHA for dae9a87
1 file changed
.storybook/components/Redirect.tsx
@@ -13,7 +13,7 @@ interface RedirectProps {
13
delay?: number;
14
}
15
16
-export const Redirect = ({ from, to, sectionName, delay = 1000000 }: RedirectProps) => {
+export const Redirect = ({ from, to, sectionName, delay = 5000 }: RedirectProps) => {
17
const [countdown, setCountdown] = useState(Math.ceil(delay / 1000));
18
19
const target = typeof window !== 'undefined' ? window.top || window.parent || window : null;
0 commit comments