From 92d9826a3c06c82bc3df2bf328a5e7d58856fb40 Mon Sep 17 00:00:00 2001 From: Nick Misasi Date: Mon, 6 Nov 2023 10:56:43 -0500 Subject: [PATCH] Fix preparing workspace redirecting to invalid channel (#25247) --- .../src/components/preparing_workspace/preparing_workspace.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/channels/src/components/preparing_workspace/preparing_workspace.tsx b/webapp/channels/src/components/preparing_workspace/preparing_workspace.tsx index 548f5b76fb..c64ee9ceda 100644 --- a/webapp/channels/src/components/preparing_workspace/preparing_workspace.tsx +++ b/webapp/channels/src/components/preparing_workspace/preparing_workspace.tsx @@ -270,7 +270,7 @@ const PreparingWorkspace = (props: Props) => { const goToChannels = () => { dispatch({type: GeneralTypes.SHOW_LAUNCHING_WORKSPACE, open: true}); - props.history.push(`/${team.name}/channels${Constants.DEFAULT_CHANNEL}`); + props.history.push(`/${team.name}/channels/${Constants.DEFAULT_CHANNEL}`); trackEvent('first_admin_setup', 'admin_setup_complete'); };