diff --git a/apps/client/src/features/editor/components/table/table-cell-menu.tsx b/apps/client/src/features/editor/components/table/table-cell-menu.tsx
index e348ea6e..f11df7da 100644
--- a/apps/client/src/features/editor/components/table/table-cell-menu.tsx
+++ b/apps/client/src/features/editor/components/table/table-cell-menu.tsx
@@ -12,6 +12,7 @@ import {
IconColumnRemove,
IconRowRemove,
IconSquareToggle,
+ IconTableRow,
} from "@tabler/icons-react";
import { useTranslation } from "react-i18next";
@@ -45,6 +46,10 @@ export const TableCellMenu = React.memo(
editor.chain().focus().deleteRow().run();
}, [editor]);
+ const toggleHeaderCell = useCallback(() => {
+ editor.chain().focus().toggleHeaderCell().run();
+ }, [editor]);
+
return (
+
+
+
+
+
+
);