diff --git a/src/lib/components/cardContainer.svelte b/src/lib/components/cardContainer.svelte
index 145130695..8c76a51f5 100644
--- a/src/lib/components/cardContainer.svelte
+++ b/src/lib/components/cardContainer.svelte
@@ -13,7 +13,7 @@
export let service = '';
export let serviceId = service;
- $: planLimit = getServiceLimit(serviceId);
+ $: planLimit = getServiceLimit(serviceId)?.amount ?? Infinity;
$: limit = preferences.get($page.route)?.limit ?? CARD_LIMIT;
diff --git a/src/lib/elements/table/body.svelte b/src/lib/elements/table/body.svelte
index ab03e4884..e573ce91f 100644
--- a/src/lib/elements/table/body.svelte
+++ b/src/lib/elements/table/body.svelte
@@ -1,6 +1,5 @@
{#if isCloud && total && limit !== 'unlimited' && total >= limit}
-