From a347a77e116a0c1c29c93f4b60cd8a3c2c09dc93 Mon Sep 17 00:00:00 2001 From: Szymon Nowakowski Date: Sat, 23 Nov 2024 16:05:54 +0100 Subject: [PATCH] Remove test timeout --- packages/frontend/src/routes/Root.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/frontend/src/routes/Root.tsx b/packages/frontend/src/routes/Root.tsx index bca071a..69c30e9 100644 --- a/packages/frontend/src/routes/Root.tsx +++ b/packages/frontend/src/routes/Root.tsx @@ -3,7 +3,6 @@ import { Outlet, useNavigate } from "react-router-dom"; import { client } from "../client"; import { useStore } from "../store"; import { Button } from "../styled/Button"; -import { timeout } from "../utils"; export function Root() { @@ -16,7 +15,6 @@ export function Root() { if (user !== null) return; const { data, error } = await client.me.get(); - await timeout(1000); if (error !== null) { navigate("/login");