fix(docker):修复构建失败

This commit is contained in:
kennethcheng 2026-05-03 05:56:23 +08:00
parent 4a5ad5673d
commit 1878b8242f

View File

@ -219,8 +219,8 @@ export default function DashboardPage() {
toast.success('交易記錄已刪除');
setDeleteTarget(null);
window.location.reload();
} else if (result.error) {
toast.error(result.error);
} else if ((result as any).error) {
toast.error((result as any).error);
}
});
}