diff --git a/frontend/src/components/ImageView.jsx b/frontend/src/components/ImageView.jsx
index 977a334..689935f 100644
--- a/frontend/src/components/ImageView.jsx
+++ b/frontend/src/components/ImageView.jsx
@@ -2,7 +2,7 @@ import { NodeViewWrapper } from '@tiptap/react'
const SIZES = ['25%', '50%', '75%', '100%']
-export default function ImageView({ node, updateAttributes, selected }) {
+export default function ImageView({ node, updateAttributes, deleteNode, selected }) {
const { src, alt, width = '100%', align = 'center' } = node.attrs
const imgStyle = {
@@ -36,6 +36,12 @@ export default function ImageView({ node, updateAttributes, selected }) {
>{label}
))}
+
+
)}
diff --git a/frontend/src/styles/index.css b/frontend/src/styles/index.css
index 19e09f2..9873365 100644
--- a/frontend/src/styles/index.css
+++ b/frontend/src/styles/index.css
@@ -1053,6 +1053,7 @@ button { cursor: pointer; font-family: inherit; }
}
.img-ctrl-btn:hover { color: var(--text); background: var(--bg-surface); border-color: var(--border); }
.img-ctrl-btn.active { color: var(--accent-hi); border-color: var(--accent); }
+.img-ctrl-delete:hover { color: var(--danger); border-color: var(--danger); background: transparent; }
.editor-body .ProseMirror ul,
.editor-body .ProseMirror ol {