Skip to content

Commit

Permalink
fix(dashboard): stripe key [Object object] (#449)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustSamuel authored Nov 12, 2024
1 parent 285f144 commit cf8acba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/dashboard/src/stores/settings.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const useSettingsStore = defineStore('settings', {
},
async fetchStripe(){
await apiService.stripe.getStripePublicKey().then((res) =>{
this.stripe = res.data;
this.stripe = (res.data as any).publicKey as string;
});
},
async fetchKeys(){
Expand Down

0 comments on commit cf8acba

Please sign in to comment.