refactor(FE-316): Remove toggleExpandedDrawer from drawer slice

This commit is contained in:
rstubryan
2025-12-26 22:57:28 +07:00
parent 800739bd4f
commit 04c987b86b
2 changed files with 0 additions and 5 deletions
-1
View File
@@ -14,7 +14,6 @@ type DrawerUISlice = {
subscribeIsValid: (callback: (isValid: boolean) => void) => () => void;
expandedDrawerOpen: boolean;
setExpandedDrawerOpen: (open: boolean) => void;
toggleExpandedDrawer: () => void;
expandedDrawerContent: ReactNode | null;
setExpandedDrawerContent: (content: ReactNode) => void;
};