aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/auth
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2023-05-24 06:57:50 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2023-05-24 16:40:43 +0530
commite245b4fa229bee1e2ab97fcb42de3831b8bdbe5b (patch)
treed684777b3fde5470c9f99304a9f022422ffb8045 /src/components/auth
parent6.3.0-nightly.9 [skip ci] (diff)
downloadferdium-app-e245b4fa229bee1e2ab97fcb42de3831b8bdbe5b.tar.gz
ferdium-app-e245b4fa229bee1e2ab97fcb42de3831b8bdbe5b.tar.zst
ferdium-app-e245b4fa229bee1e2ab97fcb42de3831b8bdbe5b.zip
Upgrade npm modules
Diffstat (limited to 'src/components/auth')
-rw-r--r--src/components/auth/Invite.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/auth/Invite.tsx b/src/components/auth/Invite.tsx
index 4ab5157a8..cebef9365 100644
--- a/src/components/auth/Invite.tsx
+++ b/src/components/auth/Invite.tsx
@@ -192,7 +192,7 @@ class Invite extends Component<IProps, IState> {
192 return ( 192 return (
193 <div 193 <div
194 className={ 194 className={
195 !embed ? 'auth__container auth__container--signup' : 'settings__main' 195 embed ? 'settings__main' : 'auth__container auth__container--signup'
196 } 196 }
197 > 197 >
198 {embed && ( 198 {embed && (
@@ -200,10 +200,10 @@ class Invite extends Component<IProps, IState> {
200 <H1>{intl.formatMessage(messages.settingsHeadline)}</H1> 200 <H1>{intl.formatMessage(messages.settingsHeadline)}</H1>
201 </div> 201 </div>
202 )} 202 )}
203 {!embed ? ( 203 {embed ? (
204 <div>{renderForm}</div>
205 ) : (
206 <div className="settings__body invite__form">{renderForm}</div> 204 <div className="settings__body invite__form">{renderForm}</div>
205 ) : (
206 <div>{renderForm}</div>
207 )} 207 )}
208 </div> 208 </div>
209 ); 209 );