Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nkshah2 committed Sep 13, 2023
1 parent c04715b commit 20e2900
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/static/js/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/static/js/bundle.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/ui/components/userDetail/loginMethods/LoginMethods.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ const Methods: React.FC<MethodProps> = ({
<span className="user-id-span">
User ID:
<span className="copy-text-wrapper resp">
<CopyText>{trim(loginMethod.recipeUserId)}</CopyText>
<CopyText copyVal={loginMethod.recipeUserId}>{trim(loginMethod.recipeUserId)}</CopyText>
</span>
<span className="copy-text-wrapper">
<CopyText>{loginMethod.recipeUserId}</CopyText>
Expand Down
4 changes: 2 additions & 2 deletions src/ui/components/userDetail/userDetailHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ export const UserDetailHeader: React.FC<UserDetailProps> = ({ onDeleteCallback }
<span className="user-detail__header__user-id__label">User ID:</span>
<span
className="user-detail__header__user-id__text block-snippet-large"
title={userDetail.userId}>
<CopyText>{userDetail.userId}</CopyText>
title={userDetail.details.id}>
<CopyText>{userDetail.details.id}</CopyText>
</span>
</div>
</div>
Expand Down

0 comments on commit 20e2900

Please sign in to comment.