We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53b6b0b commit 4c92ce1Copy full SHA for 4c92ce1
workspaces/frontend/src/app/pages/Workspaces/Form/WorkspaceForm.tsx
@@ -94,6 +94,7 @@ const WorkspaceForm: React.FC = () => {
94
95
const previousStep = useCallback(() => {
96
setCurrentStep(currentStep - 1);
97
+ setDrawerExpanded(false);
98
}, [currentStep]);
99
100
const nextStep = useCallback(() => {
@@ -185,7 +186,6 @@ const WorkspaceForm: React.FC = () => {
185
186
navigate('workspaces');
187
}, [navigate]);
188
- // Handle item selection and drawer expansion
189
const handleKindSelect = useCallback(
190
(kind: WorkspaceKind | undefined) => {
191
if (kind) {
0 commit comments