diff --git a/packages/hoppscotch-app/locales/en.json b/packages/hoppscotch-app/locales/en.json index 3f8f26633..45432d870 100644 --- a/packages/hoppscotch-app/locales/en.json +++ b/packages/hoppscotch-app/locales/en.json @@ -492,6 +492,8 @@ "join": "Invitation accepted", "join_beta": "Join the beta program to access teams.", "join_team": "Join {team}", + "joined_team": "You have joined {team}", + "joined_team_description": "You are now a member of this team", "left": "You left the team", "login_to_continue": "Login to continue", "login_to_continue_description": "You need to be logged in to join a team.", diff --git a/packages/hoppscotch-app/pages/join-team.vue b/packages/hoppscotch-app/pages/join-team.vue index 012fbd0ac..74514a180 100644 --- a/packages/hoppscotch-app/pages/join-team.vue +++ b/packages/hoppscotch-app/pages/join-team.vue @@ -63,7 +63,11 @@
{{ error }}
+
+ + {{ + $t("team.joined_team_description", { + team: inviteDetails.data.right.teamInvitation.team.name, + }) + }} +
+