aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/InviteScreen.js
diff options
context:
space:
mode:
authorLibravatar haraldox <hnaumann+github@gmail.com>2018-01-30 12:41:42 +0100
committerLibravatar haraldox <hnaumann+github@gmail.com>2018-01-30 12:41:42 +0100
commit25446bbdf8d0020b1adfe34e4f45c1a1eec6528e (patch)
treece1716855f3501da31ec2994e6d9ddb3d7e3fa09 /src/containers/auth/InviteScreen.js
parentMerge branch 'develop' into feature/invite-button (diff)
downloadferdium-app-25446bbdf8d0020b1adfe34e4f45c1a1eec6528e.tar.gz
ferdium-app-25446bbdf8d0020b1adfe34e4f45c1a1eec6528e.tar.zst
ferdium-app-25446bbdf8d0020b1adfe34e4f45c1a1eec6528e.zip
Merge branch 'fix-invite-screen' into feature/invite-button
fix linitng errors
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};