chore: traverse nodes to upsert tags

This commit is contained in:
Steven
2024-01-02 08:56:30 +08:00
parent c797099950
commit f74fa97b4a
7 changed files with 71 additions and 65 deletions

View File

@ -97,7 +97,7 @@ const UserProfile = () => {
<MemoView key={memo.id} memo={memo} showVisibility showPinnedStyle showParent />
))}
{isRequesting ? (
<div className="flex flex-col justify-start items-center w-full my-8">
<div className="flex flex-col justify-start items-center w-full my-4">
<p className="text-sm text-gray-400 italic">{t("memo.fetching-data")}</p>
</div>
) : isComplete ? (
@ -108,7 +108,7 @@ const UserProfile = () => {
</div>
)
) : (
<div className="w-full flex flex-row justify-center items-center my-2">
<div className="w-full flex flex-row justify-center items-center my-4">
<span className="cursor-pointer text-sm italic text-gray-500 hover:text-green-600" onClick={fetchMemos}>
{t("memo.fetch-more")}
</span>