Skip to content

Commit 41aad2f

Browse files
committed
fix(DashboardValidatorManagmentModal): guest dashboard limit
1 parent 1e80249 commit 41aad2f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

frontend/components/dashboard/DashboardValidatorManagementModal.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,9 @@ const effectiveBalanceLimitPerDashboard = computed(() => {
277277
const freeProduct = premiumProducts.value['Free']
278278
const effectiveBalanceLimitFreeProduct = freeProduct?.premium_perks.effective_balance_per_dashboard
279279
280-
return premium_perks.value?.effective_balance_per_dashboard ?? effectiveBalanceLimitFreeProduct
280+
return isGuestDashboard.value
281+
? effectiveBalanceLimitFreeProduct
282+
: premium_perks.value?.effective_balance_per_dashboard
281283
})
282284
283285
const hasReachedLimit = computed(() => {

0 commit comments

Comments
 (0)