feat: badge for tax 2025 bug (#5230)

This commit is contained in:
Calum H.
2026-01-27 19:03:54 +00:00
committed by GitHub
parent 03658b6a62
commit 6d1b0eef15
6 changed files with 23 additions and 6 deletions

View File

@@ -159,6 +159,7 @@ interface UserBalanceResponse {
const props = defineProps<{
balance: UserBalanceResponse | null
preloadedPaymentData?: { country: string; methods: PayoutMethod[] } | null
userBadges?: number
}>()
const emit = defineEmits<{
@@ -194,6 +195,7 @@ const { addNotification } = injectNotificationManager()
const withdrawContext = createWithdrawContext(
props.balance,
props.preloadedPaymentData || undefined,
props.userBadges,
)
provideWithdrawContext(withdrawContext)