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
+3
View File
@@ -45,4 +45,7 @@ export const createDrawerUISlice: StateCreator<
expandedDrawerContent: null as ReactNode | null,
setExpandedDrawerContent: (content: ReactNode) =>
set({ expandedDrawerContent: content }),
isNextStep: false,
setIsNextStep: (isNextStep: boolean) => set({ isNextStep }),
});