This commit is contained in:
Timothy Jaeryang Baek 2025-08-08 19:58:53 +04:00
parent c42c1ee632
commit a5683c411a
4 changed files with 1 additions and 13 deletions

View file

@ -33,7 +33,6 @@
import InputVariablesModal from '../chat/MessageInput/InputVariablesModal.svelte'; import InputVariablesModal from '../chat/MessageInput/InputVariablesModal.svelte';
export let placeholder = $i18n.t('Send a Message'); export let placeholder = $i18n.t('Send a Message');
export let transparentBackground = false;
export let id = null; export let id = null;

View file

@ -2202,9 +2202,6 @@
bind:atSelectedModel bind:atSelectedModel
bind:showCommands bind:showCommands
toolServers={$toolServers} toolServers={$toolServers}
transparentBackground={$settings?.backgroundImageUrl ??
$config?.license_metadata?.background_image_url ??
false}
{generating} {generating}
{stopResponse} {stopResponse}
{createMessagePair} {createMessagePair}
@ -2258,9 +2255,6 @@
bind:webSearchEnabled bind:webSearchEnabled
bind:atSelectedModel bind:atSelectedModel
bind:showCommands bind:showCommands
transparentBackground={$settings?.backgroundImageUrl ??
$config?.license_metadata?.background_image_url ??
false}
toolServers={$toolServers} toolServers={$toolServers}
{stopResponse} {stopResponse}
{createMessagePair} {createMessagePair}

View file

@ -75,8 +75,6 @@
import Voice from '../icons/Voice.svelte'; import Voice from '../icons/Voice.svelte';
const i18n = getContext('i18n'); const i18n = getContext('i18n');
export let transparentBackground = false;
export let onChange: Function = () => {}; export let onChange: Function = () => {};
export let createMessagePair: Function; export let createMessagePair: Function;
export let stopResponse: Function; export let stopResponse: Function;
@ -929,7 +927,7 @@
</div> </div>
</div> </div>
<div class="{transparentBackground ? 'bg-transparent' : 'bg-white dark:bg-gray-900'} "> <div class="bg-transparent">
<div <div
class="{($settings?.widescreenMode ?? null) class="{($settings?.widescreenMode ?? null)
? 'max-w-full' ? 'max-w-full'

View file

@ -29,8 +29,6 @@
const i18n = getContext('i18n'); const i18n = getContext('i18n');
export let transparentBackground = false;
export let createMessagePair: Function; export let createMessagePair: Function;
export let stopResponse: Function; export let stopResponse: Function;
@ -221,7 +219,6 @@
bind:atSelectedModel bind:atSelectedModel
bind:showCommands bind:showCommands
{toolServers} {toolServers}
{transparentBackground}
{stopResponse} {stopResponse}
{createMessagePair} {createMessagePair}
placeholder={$i18n.t('How can I help you today?')} placeholder={$i18n.t('How can I help you today?')}