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.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/containers/auth/InviteScreen.js b/src/containers/auth/InviteScreen.js
index a624e2245..42a00f1fc 100644
--- a/src/containers/auth/InviteScreen.js
+++ b/src/containers/auth/InviteScreen.js
@@ -11,9 +11,9 @@ export default class InviteScreen extends Component {
11 } 11 }
12 12
13 render() { 13 render() {
14 const { 14 const {
15 actions, 15 actions,
16 location 16 location,
17 } = this.props; 17 } = this.props;
18 18
19 return ( 19 return (
@@ -31,4 +31,9 @@ InviteScreen.wrappedComponent.propTypes = {
31 invite: PropTypes.func.isRequired, 31 invite: PropTypes.func.isRequired,
32 }).isRequired, 32 }).isRequired,
33 }).isRequired, 33 }).isRequired,
34 location: PropTypes.shape({
35 query: PropTypes.shape({
36 from: PropTypes.string,
37 }),
38 }).isRequired,
34}; 39};