Move setting to top

This commit is contained in:
James Brunton 2025-11-14 17:31:54 +00:00
parent 85934e4625
commit e367af47ef

View File

@ -9,8 +9,8 @@ import { DefaultAppSettings } from '@app/components/shared/config/configSections
const GeneralSection: React.FC = () => {
return (
<Stack gap="lg">
<CoreGeneralSection />
<DefaultAppSettings />
<CoreGeneralSection />
</Stack>
);
};