1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-04 21:30:05 +00:00

chore(lint): fixed linting issues

This commit is contained in:
Yury
2024-10-29 11:40:44 +03:00
parent 76750e864d
commit 3053c68bdf
3 changed files with 28 additions and 25 deletions

View File

@@ -285,7 +285,7 @@ const getUser = async (
username: user.username,
isActive: user.isActive,
isAdmin: user.isAdmin,
autoExec: getAutoExec ? user.autoExec ?? '' : undefined,
autoExec: getAutoExec ? (user.autoExec ?? '') : undefined,
groups: user.groups
}
}