diff --git a/src/components/TableBubbleMenu.tsx b/src/components/TableBubbleMenu.tsx
index 79b4835..07af558 100644
--- a/src/components/TableBubbleMenu.tsx
+++ b/src/components/TableBubbleMenu.tsx
@@ -37,33 +37,29 @@ const AddColRight = () => (
const DeleteRow = () => (
);
const DeleteCol = () => (
);
const MergeCells = () => (
);
const SplitCell = () => (
);
@@ -124,13 +120,13 @@ export const TableBubbleMenu: Component = (props) => {
actions: [
{ label: "Merge Cells", icon: MergeCells, command: () => props.editor.chain().focus().mergeCells().run() },
{ label: "Split Cell", icon: SplitCell, command: () => props.editor.chain().focus().splitCell().run() },
- { label: "Header Row", icon: Type, command: () => props.editor.chain().focus().toggleHeaderRow().run() },
+ { label: "Header Row", icon: () => , command: () => props.editor.chain().focus().toggleHeaderRow().run() },
]
},
{
name: "Table",
actions: [
- { label: "Delete Table", icon: Trash2, iconClass: "text-destructive", command: () => props.editor.chain().focus().deleteTable().run() },
+ { label: "Delete Table", icon: () => , iconClass: "text-destructive", command: () => props.editor.chain().focus().deleteTable().run() },
]
}
];