| 5 | import { createContext, type ReactNode, useContext, useState } from "react"; |
| 6 | |
| 7 | interface DebugContextValue { |
| 8 | enableArtificialDelay: boolean; |
| 9 | isLoadingOverride: boolean | null; |
| 10 | setEnableArtificialDelay: (value: boolean) => void; |
| 11 | setIsLoadingOverride: (value: boolean | null) => void; |
| 12 | } |
| 13 | |
| 14 | const DebugContext: Context<DebugContextValue | null> = |
| 15 | createContext<DebugContextValue | null>(null); |
nothing calls this directly
no outgoing calls
no test coverage detected