mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
Advertise admin panel on setting page #2
This commit is contained in:
parent
aa39f42cd2
commit
43cc92913f
1 changed files with 24 additions and 19 deletions
|
@ -240,6 +240,7 @@ export function SettingsPage() {
|
|||
{t("settings.account.title")}
|
||||
</Heading1>
|
||||
{user.account && state.profile.state ? (
|
||||
<div>
|
||||
<AccountSettings
|
||||
account={user.account}
|
||||
deviceName={state.deviceName.state}
|
||||
|
@ -257,11 +258,15 @@ export function SettingsPage() {
|
|||
state.profile.set((s) => (s ? { ...s, icon: v } : undefined))
|
||||
}
|
||||
/>
|
||||
<AdminPanelPart />
|
||||
</div>
|
||||
) : (
|
||||
<div>
|
||||
<RegisterCalloutPart />
|
||||
<AdminPanelPart />
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
<AdminPanelPart />
|
||||
<div id="settings-preferences" className="mt-48">
|
||||
<PreferencesPart
|
||||
language={state.appLanguage.state}
|
||||
|
|
Loading…
Reference in a new issue