Skip to content

Commit 644e291

Browse files
authored
fix: fix update window config sync (#818)
* fix: fix update window config sync * docs: update changelog
1 parent aae6984 commit 644e291

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

docs/content.en/docs/release-notes/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ Information about release notes of Coco Server is provided here.
3838
- fix: panic caused by "state() called before manage()" #806
3939
- fix: fix multiline input issue #808
4040
- fix: fix ctrl+k not working #815
41+
- fix: fix update window config sync #818
4142
- fix: fix enter key on subpages #819
4243

4344
### ✈️ Improvements

src/pages/check/index.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@ import { useEffect } from "react";
22

33
import { useUpdateStore } from "@/stores/updateStore";
44
import UpdateApp from "@/components/UpdateApp";
5+
import { useSyncStore } from "@/hooks/useSyncStore";
56

67
const CheckApp = () => {
78
const { setVisible } = useUpdateStore();
89

10+
useSyncStore();
11+
912
useEffect(() => {
1013
setVisible(true);
1114
}, []);

0 commit comments

Comments
 (0)