Skip to content
Snippets Groups Projects
Unverified Commit ab53ab21 authored by GyDi's avatar GyDi Committed by GitHub
Browse files

fix: delay update config

parent acfe5dbb
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,6 @@ import { useLockFn } from "ahooks";
import { Menu, MenuItem } from "@mui/material";
import { Settings } from "@mui/icons-material";
import { changeClashCore, getVergeConfig } from "@/services/cmds";
import { getVersion } from "@/services/api";
import Notice from "@/components/base/base-notice";
const VALID_CORE = [
......@@ -28,8 +27,10 @@ const CoreSwitch = () => {
try {
await changeClashCore(core);
mutate("getVergeConfig");
mutate("getClashConfig");
mutate("getVersion", getVersion());
setTimeout(() => {
mutate("getClashConfig");
mutate("getVersion");
}, 100);
setAnchorEl(null);
Notice.success(`Successfully switch to ${core}`, 1000);
} catch (err: any) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment