summaryrefslogtreecommitdiffstats
path: root/src/components/auth/Invite.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/auth/Invite.tsx')
-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 );