aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/InviteScreen.js
diff options
context:
space:
mode:
authorLibravatar haraldox <hnaumann+github@gmail.com>2018-01-30 14:35:30 +0100
committerLibravatar haraldox <hnaumann+github@gmail.com>2018-01-30 14:35:30 +0100
commit1d3f61150112af84bde1f5e681e7994a3f9a7e91 (patch)
treec4b7cfa0d1fe014ea1197d4ab9897535b6b0fbc3 /src/containers/auth/InviteScreen.js
parentADDED invite button on settings navigation (diff)
downloadferdium-app-1d3f61150112af84bde1f5e681e7994a3f9a7e91.tar.gz
ferdium-app-1d3f61150112af84bde1f5e681e7994a3f9a7e91.tar.zst
ferdium-app-1d3f61150112af84bde1f5e681e7994a3f9a7e91.zip
ADDED embedded invite screen in settings
reuses component `Invite`
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}