diff --git a/frontends/dashboard/src/routes/account/+page.svelte b/frontends/dashboard/src/routes/account/+page.svelte index 8bb2b223..be8e9104 100644 --- a/frontends/dashboard/src/routes/account/+page.svelte +++ b/frontends/dashboard/src/routes/account/+page.svelte @@ -82,7 +82,8 @@ `Founder's badge on Discord`, `Official PocketHost mug or tee`, ]} - limit={100} + startLimit={100} + limit={99} upgradable prices={[ { diff --git a/frontends/dashboard/src/routes/account/Card.svelte b/frontends/dashboard/src/routes/account/Card.svelte index b6abad08..28436178 100644 --- a/frontends/dashboard/src/routes/account/Card.svelte +++ b/frontends/dashboard/src/routes/account/Card.svelte @@ -6,7 +6,8 @@ export let active = false export let features: string[] = [] export let upgradable = false - export let limit = -1 + export let startLimit = 0 + export let limit = 0 export let prices: { title: string; link: string }[] = [] @@ -16,9 +17,18 @@