Skip to content

Commit

Permalink
Reproduce error
Browse files Browse the repository at this point in the history
  • Loading branch information
istarkov committed Apr 22, 2024
1 parent 47c074d commit 023a99d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions apps/builder/app/routes/timeout-fun.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import type { ActionFunctionArgs } from "@remix-run/server-runtime";

export default function Logout() {
return <h1>HELLO</h1>;
}

export const loader = async ({ request }: ActionFunctionArgs) => {
await new Promise((resolve) => setTimeout(resolve, 20000));
};

0 comments on commit 023a99d

Please sign in to comment.