diff --git a/authentication/src/components/sessionItem.tsx b/authentication/src/components/sessionItem.tsx index 83da881..44faa1e 100644 --- a/authentication/src/components/sessionItem.tsx +++ b/authentication/src/components/sessionItem.tsx @@ -19,7 +19,7 @@ export default function SessionItem({ session, showInvalidate, invalidateSession return; } - const [device, setDevice] = useState(session.devices[0]); + const [device] = useState(session.devices[0]); const parser = new UAParser(device.user_agent); const result = parser.getResult();