mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-19 21:00:40 +08:00
11 lines
214 B
TypeScript
11 lines
214 B
TypeScript
"use client";
|
|
|
|
import { useStackApp } from "@stackframe/stack";
|
|
|
|
export default function EnableFetchDelay() {
|
|
const app = useStackApp();
|
|
(app as any).__DEMO_ENABLE_SLIGHT_FETCH_DELAY = true;
|
|
|
|
return <></>;
|
|
}
|