We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a70066 commit 924fc09Copy full SHA for 924fc09
2 files changed
docs/content.en/docs/release-notes/_index.md
@@ -24,6 +24,7 @@ Information about release notes of Coco App is provided here.
24
### 🐛 Bug fix
25
26
- fix: correct enter key behavior #828
27
+- fix: fix issue with update check failure #833
28
29
### ✈️ Improvements
30
src/components/UpdateApp/index.tsx
@@ -50,11 +50,7 @@ const UpdateApp = ({ isCheckPage }: UpdateAppProps) => {
50
}, []);
51
52
useEffect(() => {
53
- if (!snapshotUpdate) return;
54
-
55
- checkUpdate().catch((error) => {
56
- addError("Update failed:" + error, "error");
57
- });
+ checkUpdateStatus();
58
}, [snapshotUpdate]);
59
60
0 commit comments