diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json
index e68369f7c..034071eec 100644
--- a/src-tauri/tauri.conf.json
+++ b/src-tauri/tauri.conf.json
@@ -18,6 +18,7 @@
"height": 700,
"minWidth": 360,
"minHeight": 600,
+ "dragDropEnabled": false,
"titleBarStyle": "Overlay",
"hiddenTitle": true,
"transparent": true,
diff --git a/src/features/composer/components/ComposerAttachments.tsx b/src/features/composer/components/ComposerAttachments.tsx
index 55a70035a..e9496be4e 100644
--- a/src/features/composer/components/ComposerAttachments.tsx
+++ b/src/features/composer/components/ComposerAttachments.tsx
@@ -1,4 +1,4 @@
-import { X } from "lucide-react";
+import { Image, X } from "lucide-react";
type ComposerAttachmentsProps = {
attachments: string[];
@@ -33,7 +33,14 @@ export function ComposerAttachments({
const title = fileTitle(path);
const titleAttr = path.startsWith("data:") ? "Pasted image" : path;
return (
-
+
+
+
+
{title}