chore: update key of daily memo

This commit is contained in:
Steven
2023-09-26 23:34:35 +08:00
parent 4180cc3a3d
commit 7cdc5c711c

View File

@@ -161,7 +161,7 @@ const DailyReview = () => {
) : (
<div className="flex flex-col justify-start items-start w-full mt-2">
{dailyMemos.map((memo) => (
<DailyMemo key={`${memo.id}-${memo.updatedTs}`} memo={memo} />
<DailyMemo key={`${memo.id}-${memo.displayTs}`} memo={memo} />
))}
</div>
)}