v0.10.9 update ui settings

This commit is contained in:
2026-03-20 22:28:14 -04:00
parent 8a99fb5ed6
commit d2c157e8d0
7 changed files with 132 additions and 65 deletions

View File

@@ -353,6 +353,7 @@ export default function Chat() {
/>
{modal === 'profile' && <ProfileModal onClose={() => setModal(null)} />}
{modal === 'settings' && <SettingsModal onClose={() => setModal(null)} onFeaturesChanged={setFeatures} />}
{modal === 'branding' && <BrandingModal onClose={() => setModal(null)} />}
</div>
);
}
@@ -377,6 +378,7 @@ export default function Chat() {
/>
{modal === 'profile' && <ProfileModal onClose={() => setModal(null)} />}
{modal === 'settings' && <SettingsModal onClose={() => setModal(null)} onFeaturesChanged={setFeatures} />}
{modal === 'branding' && <BrandingModal onClose={() => setModal(null)} />}
</div>
);
}