diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte
index cbd6a72c4..4f40c6b13 100644
--- a/src/lib/components/chat/Chat.svelte
+++ b/src/lib/components/chat/Chat.svelte
@@ -1957,61 +1957,13 @@
timestamp: Date.now()
}
}}
+ {history}
title={$chatTitle}
bind:selectedModels
shareEnabled={!!history.currentId}
{initNewChat}
/>
- {#if !history.currentId && !$chatId && selectedModels.length <= 1 && ($banners.length > 0 || ($config?.license_metadata?.type ?? null) === 'trial' || (($config?.license_metadata?.seats ?? null) !== null && $config?.user_count > $config?.license_metadata?.seats))}
-
-
- {#if ($config?.license_metadata?.type ?? null) === 'trial'}
-
- {/if}
-
- {#if ($config?.license_metadata?.seats ?? null) !== null && $config?.user_count > $config?.license_metadata?.seats}
-
- {/if}
-
- {#each $banners.filter( (b) => (b.dismissible ? !JSON.parse(localStorage.getItem('dismissedBannerIds') ?? '[]').includes(b.id) : true) ) as banner}
- {
- const bannerId = e.detail;
-
- localStorage.setItem(
- 'dismissedBannerIds',
- JSON.stringify(
- [
- bannerId,
- ...JSON.parse(localStorage.getItem('dismissedBannerIds') ?? '[]')
- ].filter((id) => $banners.find((b) => b.id === id))
- )
- );
- }}
- />
- {/each}
-
-
- {/if}
-
{#if $settings?.landingPageMode === 'chat' || createMessagesList(history, history.currentId).length > 0}
-