File tree Expand file tree Collapse file tree
docs/content.en/docs/release-notes Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -2,10 +2,13 @@ import { useEffect } from "react";
22
33import { useUpdateStore } from "@/stores/updateStore" ;
44import UpdateApp from "@/components/UpdateApp" ;
5+ import { useSyncStore } from "@/hooks/useSyncStore" ;
56
67const CheckApp = ( ) => {
78 const { setVisible } = useUpdateStore ( ) ;
89
10+ useSyncStore ( ) ;
11+
912 useEffect ( ( ) => {
1013 setVisible ( true ) ;
1114 } , [ ] ) ;
You can’t perform that action at this time.
0 commit comments