more cleanup with requests

This commit is contained in:
talksik
2022-06-10 07:31:42 -05:00
parent 327581adaf
commit ae109400f7
2 changed files with 1 additions and 3 deletions
@@ -11,7 +11,7 @@ interface IZenContext {
const ZenContext = React.createContext<IZenContext>({});
export function ZenProvider({ children }: { children: React.ReactNode }) {
const [flowState, setFlowState] = useState<boolean>(false);
const [flowState, setFlowState] = useState<boolean>(true);
const handleFlowState = useCallback(() => {
setFlowState(true);