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.js11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/containers/auth/InviteScreen.js b/src/containers/auth/InviteScreen.js
index 42a00f1fc..7102df0b9 100644
--- a/src/containers/auth/InviteScreen.js
+++ b/src/containers/auth/InviteScreen.js
@@ -17,10 +17,13 @@ export default class InviteScreen extends Component {
17 } = this.props; 17 } = this.props;
18 18
19 return ( 19 return (
20 <Invite 20 <div className="auth__container auth__container--signup">
21 onSubmit={actions.user.invite} 21 <Invite
22 from={location.query.from} 22 onSubmit={actions.user.invite}
23 /> 23 from={location.query.from}
24 embed={false}
25 />
26 </div>
24 ); 27 );
25 } 28 }
26} 29}