From 19f604e986c51f04c9b62f346b0d64e4b69189dc Mon Sep 17 00:00:00 2001 From: Uruk Date: Mon, 22 Sep 2025 20:35:48 +0200 Subject: [PATCH] refactor: remove debug console log from storage calculation Cleans up debugging output that was left in the storage percentage calculation function to improve code quality and reduce console noise in production. --- components/settings/StorageSettings.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/components/settings/StorageSettings.tsx b/components/settings/StorageSettings.tsx index 89f6a2e9..117152fc 100644 --- a/components/settings/StorageSettings.tsx +++ b/components/settings/StorageSettings.tsx @@ -40,7 +40,6 @@ export const StorageSettings = () => { }; const calculatePercentage = (value: number, total: number) => { - console.log("usage", value, total); return ((value / total) * 100).toFixed(2); };