chore: fix memo content click handler

This commit is contained in:
Steven
2022-09-19 23:01:14 +08:00
parent 366afdd1e4
commit c60c58ed69
6 changed files with 7 additions and 14 deletions

View File

@ -72,7 +72,7 @@ const ArchivedMemo: React.FC<Props> = (props: Props) => {
</span>
</div>
</div>
<MemoContent className="memo-content-wrapper" content={memo.content} />
<MemoContent content={memo.content} />
<MemoResources memo={memo} />
</div>
);