Remove console.log statements from sensor store and AnalyticsView

This commit is contained in:
rafaeldpsilva
2025-10-01 12:58:28 +01:00
parent cb659c93bb
commit a518665673
2 changed files with 0 additions and 2 deletions

View File

@@ -188,7 +188,6 @@ export const useSensorStore = defineStore('sensor', () => {
}) {
const result = await handleApiCall(() => sensorsApi.getSensors(params))
if (result) {
console.log(result)
// Check if result has a sensors property (common API pattern)
if (result.sensors && Array.isArray(result.sensors)) {
let totalReadingsCount: number = 0

View File

@@ -332,7 +332,6 @@ const apiError = computed(
// Helper functions
const formatNumber = (num: number): string => {
console.log(num)
if (num >= 1000000) return (num / 1000000).toFixed(1) + 'M'
if (num >= 1000) return (num / 1000).toFixed(1) + 'K'
return num.toString()