🐛修复下线客户端的bug
All checks were successful
continuous-integration/drone/tag Build is passing

This commit is contained in:
coward 2024-06-06 17:26:17 +08:00
parent b02ce4b0ba
commit 24ee99e33a

View File

@ -68,7 +68,7 @@ const initServerInfo = () => {
// 线
const offlineClientHandler = (clientID: string) => {
offlineClient().then(res => {
offlineClient(clientID).then(res => {
if (res.code === 200) {
message("下线客户端成功", { type: "success" });
}