Skip to content

Commit

Permalink
chore: open dashboard in a new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
apsinghdev authored and frankie567 committed Oct 24, 2024
1 parent 5ebadf7 commit 789a964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/apps/web/src/components/Accounts/AccountSetup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const AccountSetup: React.FC<AccoutSetupProps> = ({
const link = await api.accounts.dashboardLink({
id: account.id,
})
window.location.href = link.url
window.open(link.url, '_blank');
}

return (
Expand Down

0 comments on commit 789a964

Please sign in to comment.