Skip to content

Commit

Permalink
fix: Fix Zendesk ticket link for billing admin (#21620)
Browse files Browse the repository at this point in the history
remove extraneous customer from path
  • Loading branch information
xrdt authored Apr 17, 2024
1 parent 1900fd0 commit 3f1dd04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/components/Support/supportLogic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function getBillingAdminLink(user: UserType | null): string {
if (!user) {
return ''
}
const link = `http://go/billing/customer/${user.organization?.id}`
const link = `http://go/billing/${user.organization?.id}`
return `Billing Admin: ${link} (Organization: '${user.organization?.name}'`
}

Expand Down

0 comments on commit 3f1dd04

Please sign in to comment.