Skip to content

Commit

Permalink
Fix react bug in Sessions.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
gnmyt committed Aug 30, 2024
1 parent cac99fd commit a6903fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/pages/Settings/pages/Sessions/Sessions.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const Sessions = () => {
<div className="sessions-page">

{sessions.map(session => (
<div className="session">
<div className="session" key={session.id}>
<div className="session-info">
<div className={"icon-container" + (session.current ? " icon-current" : "")}>
<Icon path={getIconFromDevice(parser.setUA(session.userAgent).getDevice().type)} />
Expand Down

0 comments on commit a6903fc

Please sign in to comment.