Explorar el Código

chore: generate

GitHub Action hace 1 mes
padre
commit
478fec61ab
Se han modificado 1 ficheros con 1 adiciones y 3 borrados
  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 c = state()?.content
                       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(() => {