mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-23 03:33:53 +00:00
chore: remove debug console.log from IOMetric component
This commit is contained in:
@@ -21,7 +21,6 @@ export function IOMetric(props: IOMetricProps) {
|
||||
const newValue = getValue() || 0;
|
||||
const oldValue = currentValue();
|
||||
if (newValue !== oldValue) {
|
||||
console.log('[IOMetric] Value change detected:', oldValue, '->', newValue, formatSpeed(newValue, 0));
|
||||
setCurrentValue(newValue);
|
||||
}
|
||||
});
|
||||
|
||||
+5
-1
@@ -4,10 +4,14 @@
|
||||
echo "Building frontend..."
|
||||
cd /opt/pulse/frontend-modern && npm run build
|
||||
|
||||
echo "Copying frontend to embed location..."
|
||||
cp -r /opt/pulse/frontend-modern/dist /opt/pulse/internal/api/frontend-modern/
|
||||
|
||||
echo "Building Go binary..."
|
||||
cd /opt/pulse && go build -o pulse ./cmd/pulse
|
||||
|
||||
echo "Restarting service..."
|
||||
sudo systemctl restart pulse-backend
|
||||
|
||||
echo "Done!"
|
||||
echo "Done!"
|
||||
echo "Access Pulse at: http://localhost:7655"
|
||||
Reference in New Issue
Block a user