perf(logs): remove console.log

This commit is contained in:
Tran Anh Tuan
2025-11-21 14:27:00 +07:00
parent 46aaf67a71
commit 38c9639fcc
16 changed files with 54 additions and 53 deletions

View File

@@ -8,7 +8,7 @@ export default function useAlarmModel() {
setLoading(true);
try {
const res = await queryAlarms(); // đổi URL cho phù hợp
console.log('Alarm Data fetched:', res);
// console.log('Alarm Data fetched:', res);
setAlarmData(res || []);
} catch (err) {