diff --git a/components/kibo-ui/editor/index.tsx b/components/kibo-ui/editor/index.tsx index 83708fe..6749aba 100644 --- a/components/kibo-ui/editor/index.tsx +++ b/components/kibo-ui/editor/index.tsx @@ -600,8 +600,8 @@ export const EditorProvider = ({ Subscript, Slash.configure({ suggestion: { - items: async ({ editor, query }) => { - const items = await defaultSlashSuggestions({ editor, query }); + items: async ({ editor, query, signal }) => { + const items = await defaultSlashSuggestions({ editor, query, signal }); if (!query) { return items;