misc: 갱신 완료 주기를 조금 짧게

This commit is contained in:
2023-03-09 02:20:27 +09:00
parent c7de65707b
commit ff67f8463b
+10 -4
View File
@@ -408,14 +408,20 @@ watch(refreshCounter, async () => {
}
}
if (haveNewRecord) {
toasts.info({
toasts.info(
{
title: "갱신 완료",
body: `동향 변경이 있습니다.`,
});
},
{ delay: 1000 * 3 }
);
} else {
toasts.success({
toasts.success(
{
title: "갱신 완료",
});
},
{ delay: 1000 * 3 }
);
}
const lastVoteID = response.global.lastVoteID;