From ad21b0ad5b027f84bd03b17ed48499ebdf2411fa Mon Sep 17 00:00:00 2001 From: waruneeta Date: Sat, 23 Sep 2023 19:27:17 +0700 Subject: [PATCH] remove log --- src/views/Dashboard.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/views/Dashboard.vue b/src/views/Dashboard.vue index f986e4c5c..1010ce727 100644 --- a/src/views/Dashboard.vue +++ b/src/views/Dashboard.vue @@ -37,7 +37,6 @@ const getData = async () => { .get(config.API.msgInbox) .then((res: any) => { const data = res.data.result; - console.log(data); let list: DataInbox[] = []; data.map((e: ResponseInbox) => { list.push({ @@ -76,7 +75,6 @@ const deleteData = (id: string) => { //รอ api ลบ const removeData = async (id: string) => { - console.log("delete=", id); showLoader(); await http .delete(config.API.msgInboxDelete(id))