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.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/containers/auth/InviteScreen.js b/src/containers/auth/InviteScreen.js
index 51971f436..a624e2245 100644
--- a/src/containers/auth/InviteScreen.js
+++ b/src/containers/auth/InviteScreen.js
@@ -11,10 +11,15 @@ export default class InviteScreen extends Component {
11 } 11 }
12 12
13 render() { 13 render() {
14 const { actions } = this.props; 14 const {
15 actions,
16 location
17 } = this.props;
18
15 return ( 19 return (
16 <Invite 20 <Invite
17 onSubmit={actions.user.invite} 21 onSubmit={actions.user.invite}
22 from={location.query.from}
18 /> 23 />
19 ); 24 );
20 } 25 }