diff options
author | David Cho-Lerat <david.cho-lerat@sonarsource.com> | 2023-03-13 12:35:13 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-03-14 20:03:27 +0000 |
commit | c4e2a351504a92709154992ab1c2963201538d4c (patch) | |
tree | c88f89688a387b6d24cdd13230429a821d64033f /server/sonar-web/src/main/js/apps/users | |
parent | dd791e68ca7a5b0375e7cba70a2f8f27d4c75c26 (diff) | |
download | sonarqube-c4e2a351504a92709154992ab1c2963201538d4c.tar.gz sonarqube-c4e2a351504a92709154992ab1c2963201538d4c.zip |
Fix some code smells in MMF-3035
Diffstat (limited to 'server/sonar-web/src/main/js/apps/users')
-rw-r--r-- | server/sonar-web/src/main/js/apps/users/components/UserListItemIdentity.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/users/components/UserListItemIdentity.tsx b/server/sonar-web/src/main/js/apps/users/components/UserListItemIdentity.tsx index df385e549ed..6d4d6872ce8 100644 --- a/server/sonar-web/src/main/js/apps/users/components/UserListItemIdentity.tsx +++ b/server/sonar-web/src/main/js/apps/users/components/UserListItemIdentity.tsx @@ -17,9 +17,10 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + +import { getTextColor } from 'design-system'; import * as React from 'react'; import { colors } from '../../../app/theme'; -import { getTextColor } from '../../../helpers/colors'; import { getBaseUrl } from '../../../helpers/system'; import { IdentityProvider } from '../../../types/types'; import { User } from '../../../types/users'; |