Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 6a23aee

Browse files
committed
Swap order of private space creation and tweak copy
1 parent d93c220 commit 6a23aee

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/components/structures/SpaceRoomView.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -906,21 +906,21 @@ export default class SpaceRoomView extends React.PureComponent<IProps, IState> {
906906
space={this.props.space}
907907
justCreatedOpts={this.props.justCreatedOpts}
908908
onFinished={(invite: boolean) => {
909-
this.setState({ phase: invite ? Phase.PrivateInvite : Phase.PrivateExistingRooms });
909+
this.setState({ phase: invite ? Phase.PrivateCreateRooms : Phase.PrivateExistingRooms });
910910
}}
911911
/>;
912912
case Phase.PrivateInvite:
913913
return <SpaceSetupPrivateInvite
914914
space={this.props.space}
915-
onFinished={() => this.setState({ phase: Phase.PrivateCreateRooms })}
915+
onFinished={() => this.setState({ phase: Phase.Landing })}
916916
/>;
917917
case Phase.PrivateCreateRooms:
918918
return <SpaceSetupFirstRooms
919919
space={this.props.space}
920-
title={_t("What projects are you working on?")}
920+
title={_t("What projects are your team working on?")}
921921
description={_t("We'll create rooms for each of them. " +
922922
"You can add more later too, including already existing ones.")}
923-
onFinished={(firstRoomId: string) => this.setState({ phase: Phase.Landing, firstRoomId })}
923+
onFinished={(firstRoomId: string) => this.setState({ phase: Phase.PrivateInvite, firstRoomId })}
924924
/>;
925925
case Phase.PrivateExistingRooms:
926926
return <SpaceAddExistingRooms

src/i18n/strings/en_EN.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2976,7 +2976,7 @@
29762976
"What are some things you want to discuss in %(spaceName)s?": "What are some things you want to discuss in %(spaceName)s?",
29772977
"Let's create a room for each of them.": "Let's create a room for each of them.",
29782978
"You can add more later too, including already existing ones.": "You can add more later too, including already existing ones.",
2979-
"What projects are you working on?": "What projects are you working on?",
2979+
"What projects are your team working on?": "What projects are your team working on?",
29802980
"We'll create rooms for each of them. You can add more later too, including already existing ones.": "We'll create rooms for each of them. You can add more later too, including already existing ones.",
29812981
"My threads": "My threads",
29822982
"Shows all threads you’ve participated in": "Shows all threads you’ve participated in",

0 commit comments

Comments
 (0)