aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/components/editor/plugins/delete-plugins.ts
diff options
context:
space:
mode:
authorMahesh Sanikommmu <[email protected]>2025-08-16 18:50:10 -0700
committerMahesh Sanikommmu <[email protected]>2025-08-16 18:50:10 -0700
commit39003aff23d64ff1d96074d71521f6023c9bec01 (patch)
tree3f870c04b3dce315bba1b21aa2da158494e71774 /apps/web/app/components/editor/plugins/delete-plugins.ts
parentMerge pull request #355 from supermemoryai/archive (diff)
downloadarchived-supermemory-39003aff23d64ff1d96074d71521f6023c9bec01.tar.xz
archived-supermemory-39003aff23d64ff1d96074d71521f6023c9bec01.zip
New Version of Supermemory Consumer App
Diffstat (limited to 'apps/web/app/components/editor/plugins/delete-plugins.ts')
-rw-r--r--apps/web/app/components/editor/plugins/delete-plugins.ts20
1 files changed, 0 insertions, 20 deletions
diff --git a/apps/web/app/components/editor/plugins/delete-plugins.ts b/apps/web/app/components/editor/plugins/delete-plugins.ts
deleted file mode 100644
index 947137bc..00000000
--- a/apps/web/app/components/editor/plugins/delete-plugins.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-'use client';
-
-import { HorizontalRulePlugin } from '@udecode/plate-horizontal-rule/react';
-import { ImagePlugin, MediaEmbedPlugin } from '@udecode/plate-media/react';
-import { DeletePlugin, SelectOnBackspacePlugin } from '@udecode/plate-select';
-
-export const deletePlugins = [
- SelectOnBackspacePlugin.configure({
- options: {
- query: {
- allow: [
- ImagePlugin.key,
- MediaEmbedPlugin.key,
- HorizontalRulePlugin.key,
- ],
- },
- },
- }),
- DeletePlugin,
-] as const;