feat: Integrate branding store in PaymentCompleted and PaymentFailed views to display branding information

This commit is contained in:
2025-04-24 14:22:01 -04:00
parent defba49e97
commit d0876861dc
2 changed files with 6 additions and 2 deletions

View File

@@ -18,10 +18,12 @@
<script setup>
import { useRouter, useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n';
import { useBrandingStore } from '@/stores/brandingStore.js';
const router = useRouter();
const route = useRoute();
const { t } = useI18n();
const brandingStore = useBrandingStore();
function goBack() {
const creatorName = route.params.creator?.split('/')[0] || '';