Fix return statement syntax in map functions

Add missing semicolons after return statement closing in:
- devices page map function
- users page map function

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-29 23:40:34 +00:00
parent 6e0ba563b8
commit b24941e95f
2 changed files with 3 additions and 1 deletions

View File

@@ -344,6 +344,7 @@ export default function DevicesPage() {
)} )}
</div> </div>
</div> </div>
);
})} })}
</div> </div>

View File

@@ -333,7 +333,8 @@ export default function UsersPage() {
)} )}
</div> </div>
</div> </div>
))} );
})}
</div> </div>
{users.length === 0 && ( {users.length === 0 && (