From eb98631ff61cafc1a9ff9ca01bc352f329ad7d83 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Mon, 17 Jun 2024 11:11:54 -0700 Subject: [PATCH] refac --- src/lib/components/chat/Messages/ProfileImage.svelte | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/lib/components/chat/Messages/ProfileImage.svelte b/src/lib/components/chat/Messages/ProfileImage.svelte index 44f3b5fce..c923d70d5 100644 --- a/src/lib/components/chat/Messages/ProfileImage.svelte +++ b/src/lib/components/chat/Messages/ProfileImage.svelte @@ -2,10 +2,12 @@ import { settings } from '$lib/stores'; import { WEBUI_BASE_URL } from '$lib/constants'; + export let className = 'size-8'; + export let src = '/user.png'; -
+
profile