mirror of
https://github.com/revoltchat/revite.git
synced 2024-12-25 23:22:06 -05:00
Merge pull request #287 from RigidStudios/startnotes
This commit is contained in:
commit
8c23b309d9
2 changed files with 7 additions and 2 deletions
|
@ -40,7 +40,6 @@ export function OnboardingModal({ onClose, callback }: Props) {
|
||||||
<div className={styles.header}>
|
<div className={styles.header}>
|
||||||
<h1>
|
<h1>
|
||||||
<Text id="app.special.modals.onboarding.welcome" />
|
<Text id="app.special.modals.onboarding.welcome" />
|
||||||
<br />
|
|
||||||
<img src={wideSVG} loading="eager" />
|
<img src={wideSVG} loading="eager" />
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -30,7 +30,13 @@ export default observer(({ channel }: Props) => {
|
||||||
<StartBase>
|
<StartBase>
|
||||||
<h1>{getChannelName(channel, true)}</h1>
|
<h1>{getChannelName(channel, true)}</h1>
|
||||||
<h4>
|
<h4>
|
||||||
<Text id="app.main.channel.start.group" />
|
<Text
|
||||||
|
id={
|
||||||
|
channel.channel_type === "SavedMessages"
|
||||||
|
? "app.main.channel.start.saved"
|
||||||
|
: "app.main.channel.start.group"
|
||||||
|
}
|
||||||
|
/>
|
||||||
</h4>
|
</h4>
|
||||||
</StartBase>
|
</StartBase>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue