diff --git a/surfsense_web/app/preview/chat-comments/page.tsx b/surfsense_web/app/preview/chat-comments/page.tsx index eb6be16ad..74c0f2dc1 100644 --- a/surfsense_web/app/preview/chat-comments/page.tsx +++ b/surfsense_web/app/preview/chat-comments/page.tsx @@ -1,8 +1,8 @@ "use client"; import { useState } from "react"; -import { MemberMentionPicker } from "@/components/chat-comments/member-mention-picker"; -import type { MemberOption } from "@/components/chat-comments/member-mention-picker"; +import { MemberMentionPicker } from "@/components/chat-comments/member-mention-picker/member-mention-picker"; +import type { MemberOption } from "@/components/chat-comments/member-mention-picker/types"; const fakeMembersData: MemberOption[] = [ { diff --git a/surfsense_web/components/chat-comments/member-mention-picker/index.ts b/surfsense_web/components/chat-comments/member-mention-picker/index.ts deleted file mode 100644 index 45df9b18f..000000000 --- a/surfsense_web/components/chat-comments/member-mention-picker/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -export { MemberMentionPicker } from "./member-mention-picker"; -export { MemberMentionItem } from "./member-mention-item"; -export type { MemberOption, MemberMentionPickerProps, MemberMentionItemProps } from "./types"; -