1
0
Fork 0

wip(org): Updated account pages

This commit is contained in:
Joost De Cock 2023-03-27 19:21:27 +02:00
parent 9e3861b009
commit ff95af3a0f
26 changed files with 70 additions and 123 deletions

View file

@ -33,7 +33,7 @@ export const LanguageSettings = ({ app, title = false }) => {
}
return (
<>
<div className="max-w-xl">
{title ? <h2 className="text-4xl">{t('languageTitle')}</h2> : null}
{conf.languages.map((val) => (
<Choice val={val} t={t} update={update} current={language} key={val}>
@ -41,6 +41,6 @@ export const LanguageSettings = ({ app, title = false }) => {
</Choice>
))}
<BackToAccountButton loading={app.state.loading} />
</>
</div>
)
}