Skip to content

Commit 2967ad6

Browse files
committed
fix(useStripeProvider): remove double slash on call for csrf token
1 parent 0998755 commit 2967ad6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

frontend/composables/useStripeProvider.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ export function useStripeProvider() {
3131
if (stripePulicKey === '') {
3232
return
3333
}
34-
await $fetch(`${apiClient}/pricing`, {
34+
await $fetch('/pricing', {
35+
baseURL: apiClient,
3536
onResponse({
3637
response,
3738
}) {

0 commit comments

Comments
 (0)