diff --git a/maternal-web/components/settings/DeviceTrustManagement.tsx b/maternal-web/components/settings/DeviceTrustManagement.tsx index ce3f8fb..8244493 100644 --- a/maternal-web/components/settings/DeviceTrustManagement.tsx +++ b/maternal-web/components/settings/DeviceTrustManagement.tsx @@ -203,37 +203,33 @@ export function DeviceTrustManagement() { {getPlatformIcon(device.platform)} - - {device.platform || 'Unknown Platform'} - - {device.isCurrent && ( - } /> - )} - {device.trusted ? ( - } /> - ) : ( - } - /> - )} - - } + primary={device.platform || 'Unknown Platform'} secondary={ - - - Device: {device.deviceFingerprint} - - - Last seen: {formatDistanceToNow(new Date(device.lastSeen))} ago - - + <> + Device: {device.deviceFingerprint} +
+ Last seen: {formatDistanceToNow(new Date(device.lastSeen))} ago + } + primaryTypographyProps={{ + sx: { display: 'inline', mr: 1 } + }} /> + + {device.isCurrent && ( + } /> + )} + {device.trusted ? ( + } /> + ) : ( + } + /> + )} +