Remove config button

This commit is contained in:
Connor Yoh 2025-08-26 17:13:18 +01:00
parent 47ccb6a6ed
commit e7bc964595

View File

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