Compare commits

..

No commits in common. "62acc3a5c856337752b7d47b1c3688b61b13cea3" and "e63aef8b83033a30e600767af9feca25f75b74b3" have entirely different histories.

View file

@ -43,11 +43,6 @@ export const useSocketStore = defineStore("socket", () => {
notifyStatusOrg("current", body.message, body.success);
}
});
socket.on("socket-notification", (payload) => {
let body: sockeBackup = JSON.parse(payload);
notifyStatus(body.message, body.success);
});
}
function notifyStatus(message: string, success?: boolean) {