Skip to content

Commit

Permalink
Fix inject url
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpolman committed Sep 27, 2024
1 parent 7b3798e commit 08cac58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/studio/src/components/BaseCardProfile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ export default defineComponent({
this.url = walletURL.toString();
const apiURL = new URL(API_URL);
apiURL.pathname = `v1/wallet/${this.profile._id}.js`;
apiURL.pathname = `v1/wallet/js/${this.profile._id}.js`;
this.embedCode = `<script src="${apiURL.toString()}"></script>`;
},
methods: {
Expand Down

0 comments on commit 08cac58

Please sign in to comment.