From adddf0402ac103fcc49b1c0a4b9d17ada8af228c Mon Sep 17 00:00:00 2001 From: matevip Date: Sun, 10 May 2026 22:32:54 +0800 Subject: [PATCH] style(ui-chat): align useI18n destructuring spacing in MessageBubble --- mateclaw-ui/src/components/chat/MessageBubble.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mateclaw-ui/src/components/chat/MessageBubble.vue b/mateclaw-ui/src/components/chat/MessageBubble.vue index e6f97308..0c5b4e01 100644 --- a/mateclaw-ui/src/components/chat/MessageBubble.vue +++ b/mateclaw-ui/src/components/chat/MessageBubble.vue @@ -423,7 +423,7 @@ import type { Message, MessageSegment, ChatAttachment, ToolCallMeta, PlanMeta } import type { ChatErrorInfo } from '@/types/chatError' const { renderMarkdown } = useMarkdownRenderer() -const { t,locale} = useI18n() +const { t, locale } = useI18n() const { getToolLabel } = useToolLabel() const { blobUrls, loadAllImages, loadAllVideos, loadAllAudios, loadAllModels, downloadFile, openImage, getDisplayUrl, revokeAll } = useAuthenticatedAttachment()