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:
@@ -344,6 +344,7 @@ export default function DevicesPage() {
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
|
||||
|
||||
@@ -333,7 +333,8 @@ export default function UsersPage() {
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
|
||||
{users.length === 0 && (
|
||||
|
||||
Reference in New Issue
Block a user