diff --git a/src/lib/components/studio/chat/chat.svelte b/src/lib/components/studio/chat/chat.svelte
index 14415caf2..4839d77b8 100644
--- a/src/lib/components/studio/chat/chat.svelte
+++ b/src/lib/components/studio/chat/chat.svelte
@@ -126,12 +126,6 @@
let tokens = $state(2);
let isBlocked = $derived(tokens === 0);
-
- const messaging = $derived({
- callToAction: tokens > 0 ? 'Upgrade' : 'You are out of free messages.',
- message: tokens > 0 ? 'to increase your message limits.' : 'Upgrade now.',
- link: tokens > 0 ? '/#upgrade' : ''
- });
{#if tokens < 2}
-