From 10c81ccba3707dbea922e9c86a868232663092a1 Mon Sep 17 00:00:00 2001 From: Steven Date: Thu, 21 Dec 2023 21:43:28 +0800 Subject: [PATCH] chore: fix type definition --- web/src/components/MemoEditorV1/MemoEditorDialog.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/web/src/components/MemoEditorV1/MemoEditorDialog.tsx b/web/src/components/MemoEditorV1/MemoEditorDialog.tsx index 57e87843..c01fde64 100644 --- a/web/src/components/MemoEditorV1/MemoEditorDialog.tsx +++ b/web/src/components/MemoEditorV1/MemoEditorDialog.tsx @@ -1,6 +1,7 @@ import { useEffect } from "react"; import { useGlobalStore, useTagStore } from "@/store/module"; -import MemoEditor from "."; +import { MemoRelation } from "@/types/proto/api/v2/memo_relation_service"; +import MemoEditorV1 from "."; import { generateDialog } from "../Dialog"; import Icon from "../Icon"; @@ -34,7 +35,7 @@ const MemoEditorDialog: React.FC = ({ memoId, relationList, destroy }: Pr
-