feat(web): forgetting memory

This commit is contained in:
zhaoying
2026-01-07 20:37:34 +08:00
parent 75d5121234
commit a1e8d858a2
18 changed files with 717 additions and 83 deletions

View File

@@ -25,7 +25,7 @@ const Neo4j: FC = () => {
const aboutMeRef = useRef<AboutMeRef>(null)
const handleNameUpdate = (data: { other_name?: string; id: string }) => {
setName(data.other_name ?? data.id)
setName(data.other_name && data.other_name !== '' ? data.other_name : data.id)
}
const handleRefresh = () => {