Remove config button (#4309)

This commit is contained in:
ConnorYoh 2025-08-26 17:29:43 +01:00 committed by GitHub
parent 68d59fd377
commit 1eee5c9a11
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -190,7 +190,7 @@ const QuickAccessBar = forwardRef<HTMLDivElement>(({
<div className="spacer" />
{/* Config button at the bottom */}
{buttonConfigs
{/* {buttonConfigs
.filter(config => config.id === 'config')
.map(config => (
<div className="flex flex-col items-center gap-1">
@ -210,14 +210,14 @@ const QuickAccessBar = forwardRef<HTMLDivElement>(({
{config.name}
</span>
</div>
))}
))} */}
</div>
</div>
<AppConfigModal
{/* <AppConfigModal
opened={configModalOpen}
onClose={() => setConfigModalOpen(false)}
/>
/> */}
</div>
);
});