diff --git a/frontend/src/api/modules/toolbox.ts b/frontend/src/api/modules/toolbox.ts index 0c3560aac..99489f35f 100644 --- a/frontend/src/api/modules/toolbox.ts +++ b/frontend/src/api/modules/toolbox.ts @@ -25,7 +25,7 @@ export const updateDevicePasswd = (user: string, passwd: string) => { return http.post(`/toolbox/device/update/passwd`, { user: user, passwd: Base64.encode(passwd) }, TimeoutEnum.T_60S); }; export const updateDeviceSwap = (params: Toolbox.SwapHelper) => { - return http.post(`/toolbox/device/update/swap`, params, TimeoutEnum.T_60S); + return http.post(`/toolbox/device/update/swap`, params, TimeoutEnum.T_10M); }; export const updateDeviceByConf = (name: string, file: string) => { return http.post(`/toolbox/device/update/byconf`, { name: name, file: file }, TimeoutEnum.T_5M);