[FIX] v0.4.3.3 - Fix unused variable error preventing build
This commit is contained in:
parent
6bd5013357
commit
778982f6c9
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "smartims",
|
||||
"private": true,
|
||||
"version": "0.4.3.2",
|
||||
"version": "0.4.3.3",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "server",
|
||||
"version": "0.4.3.2",
|
||||
"version": "0.4.3.3",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
||||
@ -205,7 +205,7 @@ export function UserManagementPage() {
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
) : (Array.isArray(users) ? users : []).map((u: any, idx) => {
|
||||
) : (Array.isArray(users) ? users : []).map((u: any) => {
|
||||
if (!u || !u.id) return null;
|
||||
|
||||
// Defensive parsing for modules
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user