Browse Source

Fix config sidebar button state (#602)

pull/605/head
philon- 1 year ago
committed by GitHub
parent
commit
3be528d03a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 7
      src/pages/Config/index.tsx

7
src/pages/Config/index.tsx

@ -51,14 +51,12 @@ const ConfigPage = () => {
description:
`The configuration change ${moduleConfig.payloadVariant.case} has been saved.`,
})
)
),
);
setIsSaving(false);
}
await connection?.commitEditSettings();
} catch (_error) {
toast({
title: "Error Saving Config",
@ -87,11 +85,12 @@ const ConfigPage = () => {
/>
</SidebarSection>
</Sidebar>
), [])
),
[activeConfigSection],
);
return (
<>
<PageLayout
contentClassName="overflow-auto"
leftBar={leftSidebar}

Loading…
Cancel
Save