feat(FE-316): Add isNextStep flag for expanded drawer flow

This commit is contained in:
rstubryan
2025-12-27 08:37:05 +07:00
parent 4aab54981e
commit 6fde6b180a
4 changed files with 31 additions and 30 deletions
+2
View File
@@ -16,6 +16,8 @@ type DrawerUISlice = {
setExpandedDrawerOpen: (open: boolean) => void;
expandedDrawerContent: ReactNode | null;
setExpandedDrawerContent: (content: ReactNode) => void;
isNextStep: boolean;
setIsNextStep: (v: boolean) => void;
};
export type UIStore = MainUiSlice & DrawerUISlice;