fix: update chatWidthClasses to use autoChatWidth configuration

This commit is contained in:
Imad Saddik 2026-03-15 17:08:43 +00:00
parent b73209694d
commit d4034eff07
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class ChatStore {
get chatWidthClasses(): { class: string } {
const currentConfig = config();
return currentConfig.customChatWidth
return currentConfig.autoChatWidth
? { class: AUTO_WIDTH_CLASSES }
: { class: DEFAULT_WIDTH_CLASS };
}