fix: correct UTC timestamp display and pre-existing code quality issues

This commit is contained in:
Pouzor
2026-04-05 03:06:29 +02:00
parent d96b502524
commit bd22891fab
4 changed files with 9 additions and 4 deletions
@@ -78,7 +78,7 @@ export function PendingDeviceModal({ device, onClose, onApprove, onHide, onIgnor
const TypeIcon = TYPE_ICONS[device.suggested_type ?? 'generic'] ?? Circle
const handleApprove = () => { onApprove(device); onClose() }
const handleApprove = () => { onApprove(device) }
const handleHide = () => { onHide(device); onClose() }
const handleIgnore = () => { onIgnore(device); onClose() }