Browse Source

chore: generate

GitHub Action 1 month ago
parent
commit
478fec61ab
1 changed files with 1 additions and 3 deletions
  1. 1 3
      packages/app/src/pages/session.tsx

+ 1 - 3
packages/app/src/pages/session.tsx

@@ -1014,9 +1014,7 @@ export default function Page() {
                     const isImage = createMemo(() => {
                     const isImage = createMemo(() => {
                       const c = state()?.content
                       const c = state()?.content
                       return (
                       return (
-                        c?.encoding === "base64" &&
-                        c?.mimeType?.startsWith("image/") &&
-                        c?.mimeType !== "image/svg+xml"
+                        c?.encoding === "base64" && c?.mimeType?.startsWith("image/") && c?.mimeType !== "image/svg+xml"
                       )
                       )
                     })
                     })
                     const isSvg = createMemo(() => {
                     const isSvg = createMemo(() => {