We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2565a1c commit 58b4bacCopy full SHA for 58b4bac
components/dashboard/src/teams/NewTeam.tsx
@@ -27,7 +27,8 @@ export default function NewTeamPage() {
27
const team = publicApiTeamToProtocol((await teamsService.createTeam({ name })).team!);
28
29
invalidateOrgs();
30
- history.push(`/?org=${team.id}`);
+ // Redirects to the new Org's dashboard
31
+ history.push(`/workspaces/?org=${team.id}`);
32
} catch (error) {
33
console.error(error);
34
if (error instanceof ConnectError) {
0 commit comments