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

Commit 37949ef

Browse files
authored
Merge pull request #6967 from matrix-org/t3chguy/fix/18768
2 parents 780f088 + 6a23aee commit 37949ef

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
@@ -909,21 +909,21 @@ export default class SpaceRoomView extends React.PureComponent<IProps, IState> {
909909
space={this.props.space}
910910
justCreatedOpts={this.props.justCreatedOpts}
911911
onFinished={(invite: boolean) => {
912-
this.setState({ phase: invite ? Phase.PrivateInvite : Phase.PrivateExistingRooms });
912+
this.setState({ phase: invite ? Phase.PrivateCreateRooms : Phase.PrivateExistingRooms });
913913
}}
914914
/>;
915915
case Phase.PrivateInvite:
916916
return <SpaceSetupPrivateInvite
917917
space={this.props.space}
918-
onFinished={() => this.setState({ phase: Phase.PrivateCreateRooms })}
918+
onFinished={() => this.setState({ phase: Phase.Landing })}
919919
/>;
920920
case Phase.PrivateCreateRooms:
921921
return <SpaceSetupFirstRooms
922922
space={this.props.space}
923-
title={_t("What projects are you working on?")}
923+
title={_t("What projects are your team working on?")}
924924
description={_t("We'll create rooms for each of them. " +
925925
"You can add more later too, including already existing ones.")}
926-
onFinished={(firstRoomId: string) => this.setState({ phase: Phase.Landing, firstRoomId })}
926+
onFinished={(firstRoomId: string) => this.setState({ phase: Phase.PrivateInvite, firstRoomId })}
927927
/>;
928928
case Phase.PrivateExistingRooms:
929929
return <SpaceAddExistingRooms

src/i18n/strings/en_EN.json

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

0 commit comments

Comments
 (0)