mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-10 01:03:36 -05:00
fix(login): Fix render of welcome and subtitle text per page (#573)
This commit is contained in:
parent
777d06f469
commit
002cb5e6c1
1 changed files with 2 additions and 2 deletions
|
@ -146,10 +146,10 @@ export const Form = observer(({ page, callback }: Props) => {
|
|||
<div className={styles.welcome}>
|
||||
<div className={styles.title}>
|
||||
<img src={WaveSVG} draggable={false} />
|
||||
<Text id="login.welcome" />
|
||||
<Text id={page === "create" ? "login.welcome2" : "login.welcome"} />
|
||||
</div>
|
||||
<div className={styles.subtitle}>
|
||||
<Text id="login.subtitle" />
|
||||
<Text id={page === "create" ? "login.subtitle2" : "login.subtitle"} />
|
||||
<div>(app.revolt.chat)</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue