cleanup main layout

This commit is contained in:
talksik
2022-06-10 08:03:54 -05:00
parent 119d39774a
commit 8ee5cc0886
3 changed files with 27 additions and 14 deletions
@@ -11,7 +11,7 @@ interface IZenContext {
const ZenContext = React.createContext<IZenContext>({});
export function ZenProvider({ children }: { children: React.ReactNode }) {
const [flowState, setFlowState] = useState<boolean>(true);
const [flowState, setFlowState] = useState<boolean>(false);
const handleFlowState = useCallback(() => {
setFlowState(true);