We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f573a90 commit f9b44c6Copy full SHA for f9b44c6
src/lib/components/chat/Chat.svelte
@@ -1937,7 +1937,7 @@
1937
1938
<PaneGroup direction="horizontal" class="w-full h-full">
1939
<Pane defaultSize={50} class="h-full flex w-full relative">
1940
- {#if $banners.length > 0 && !history.currentId && !$chatId && selectedModels.length <= 1}
+ {#if ($banners.length > 0 && !history.currentId && !$chatId && selectedModels.length <= 1) || ($config?.license_metadata?.type ?? null) === 'trial' || (($config?.license_metadata?.seats ?? null) !== null && $config?.user_count > $config?.license_metadata?.seats)}
1941
<div class="absolute top-12 left-0 right-0 w-full z-30">
1942
<div class=" flex flex-col gap-1 w-full">
1943
{#if ($config?.license_metadata?.type ?? null) === 'trial'}
0 commit comments