aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/InviteScreen.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/auth/InviteScreen.js')
-rw-r--r--src/containers/auth/InviteScreen.js10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/containers/auth/InviteScreen.js b/src/containers/auth/InviteScreen.js
index e54d8d225..059888c99 100644
--- a/src/containers/auth/InviteScreen.js
+++ b/src/containers/auth/InviteScreen.js
@@ -14,12 +14,10 @@ export default class InviteScreen extends Component {
14 const { actions } = this.props; 14 const { actions } = this.props;
15 15
16 return ( 16 return (
17 <div className="auth__container auth__container--signup"> 17 <Invite
18 <Invite 18 onSubmit={actions.user.invite}
19 onSubmit={actions.user.invite} 19 embed={false}
20 embed={false} 20 />
21 />
22 </div>
23 ); 21 );
24 } 22 }
25} 23}