diff --git a/src/hooks/web/useMessage.ts b/src/hooks/web/useMessage.ts index b30c109..3a3dbbc 100644 --- a/src/hooks/web/useMessage.ts +++ b/src/hooks/web/useMessage.ts @@ -54,7 +54,7 @@ function getIcon(iconType: string) { function renderContent({ content }: Pick) { try { if (isString(content)) { - return h('div', content as string); + return h('div', h('div', content as string)); } else { return content; }