chore: made activatable elements clickable

ref: N25B-400
This commit is contained in:
Pim Hutting
2026-01-12 19:41:05 +01:00
parent c4a4c52ecc
commit 46d900305a
3 changed files with 34 additions and 3 deletions

View File

@@ -73,6 +73,7 @@ const MonitoringPage: React.FC = () => {
data.norms.forEach((normUpdate: { id: string; active: boolean }) => {
nextState[normUpdate.id] = normUpdate.active;
console.log(`Conditional norm ${normUpdate.id} set to active: ${normUpdate.active}`);
});
return nextState;