We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 219b376 commit 7227590Copy full SHA for 7227590
1 file changed
apps/builder/app/dashboard/profile-menu.tsx
@@ -87,9 +87,11 @@ export const ProfileMenu = ({
87
purchase.subscriptionId ? (
88
<DropdownMenuItem
89
key={purchase.subscriptionId}
90
- onSelect={() =>
91
- navigate(userPlanSubscriptionPath(purchase.subscriptionId))
92
- }
+ onSelect={() => {
+ window.location.href = userPlanSubscriptionPath(
+ purchase.subscriptionId
93
+ );
94
+ }}
95
>
96
{purchase.planName}
97
</DropdownMenuItem>
0 commit comments