diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx
index ea2a117..7fdcdb8 100644
--- a/frontend/src/App.jsx
+++ b/frontend/src/App.jsx
@@ -2490,18 +2490,27 @@ function UserManagement({ toast }) {
{Object.entries(grouped).map(([group, tools]) => (
{group}
- {tools.map(t => (
-
- ))}
+ {tools.map(t => {
+ const checked = visSelection.includes(t.id);
+ return (
+
+ );
+ })}
))}