Skip to content

Commit

Permalink
Remove redundant text style
Browse files Browse the repository at this point in the history
  • Loading branch information
Ngkaokis committed Mar 25, 2024
1 parent 12aad7f commit f4d39a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions portal/src/graphql/adminapi/UsersList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ const UsersList: React.VFC<UsersListProps> = function UsersList(props) {
}
return (
<BaseCell>
<Text className={"whitespace-normal text-inherit"}>{text}</Text>
<Text className={"whitespace-normal"}>{text}</Text>
</BaseCell>
);
}, []);
Expand All @@ -381,7 +381,7 @@ const UsersList: React.VFC<UsersListProps> = function UsersList(props) {
}
return (
<BaseCell>
<Text className={"whitespace-normal text-inherit"}>{text}</Text>
<Text className={"whitespace-normal"}>{text}</Text>
</BaseCell>
);
}, []);
Expand Down

0 comments on commit f4d39a4

Please sign in to comment.