fix: 修复同步问题

This commit is contained in:
hzm
2026-03-16 12:32:43 +08:00
parent ab9e8a5072
commit 139116a0d3
2 changed files with 6 additions and 1 deletions

View File

@@ -1624,7 +1624,9 @@ export default function HomePage() {
if (key === 'funds') {
const prevSig = getFundCodesSignature(prevValue);
const nextSig = getFundCodesSignature(nextValue);
if (prevSig === nextSig) return;
if (prevSig === nextSig) {
return;
}
}
if (!skipSyncRef.current) {
const now = nowInTz().toISOString();