diff --git a/app/components/DeviceVerify/DeviceVerify.tsx b/app/components/DeviceVerify/DeviceVerify.tsx
index 6b965f6..5ba702f 100644
--- a/app/components/DeviceVerify/DeviceVerify.tsx
+++ b/app/components/DeviceVerify/DeviceVerify.tsx
@@ -1,16 +1,26 @@
+import { useRosettaColors } from "@/app/hooks/useRosettaColors";
import { DeviceEntry } from "@/app/providers/ProtocolProvider/protocol/packets/packet.device.list";
-import { Flex, Text } from "@mantine/core";
+import { Box, Button, Divider, Flex, Text } from "@mantine/core";
export interface DeviceVerifyProps {
device: DeviceEntry;
}
export function DeviceVerify(props: DeviceVerifyProps) {
+ const colors = useRosettaColors();
+
return (
-
-
- New login from {props.device.deviceName}
-
-
+
+
+
+
+ New login from {props.device.deviceName} ({props.device.deviceOs})
+
+
+
+
+
+
+
);
}
\ No newline at end of file