Skip to content

Commit

Permalink
Merge pull request #3330 from Emurgo/fix/uat-revamp
Browse files Browse the repository at this point in the history
fix(revamp): address all user-acceptance-testing revamp issues
  • Loading branch information
vsubhuman authored Nov 1, 2023
2 parents 5cdcfbd + 0218cc3 commit 5763405
Show file tree
Hide file tree
Showing 40 changed files with 1,011 additions and 372 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/yoroi-extension/app/assets/images/no.inline.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions packages/yoroi-extension/app/assets/images/yes.inline.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions packages/yoroi-extension/app/components/common/TextField.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function TextField({
position="end"
sx={{ minWidth: '52px', display: 'flex', justifyContent: 'flex-end' }}
>
{Boolean(error) === true ? (
{Boolean(error) === true && !isRevampTheme ? (
<ErrorIcon />
) : done === true && !isRevampTheme ? (
<DoneIcon />
Expand All @@ -111,7 +111,7 @@ function TextField({
position="end"
sx={{ minWidth: '52px', display: 'flex', justifyContent: 'flex-end' }}
>
{Boolean(error) === true ? (
{Boolean(error) === true && !isRevampTheme ? (
<ErrorIcon />
) : done === true && !isRevampTheme ? (
<DoneIcon />
Expand All @@ -122,7 +122,7 @@ function TextField({
</InputAdornment>
) : (
<InputAdornment position="end">
{Boolean(error) === true ? (
{Boolean(error) === true && !isRevampTheme ? (
<ErrorIcon />
) : done === true && !isRevampTheme ? (
<DoneIcon />
Expand Down
Loading

0 comments on commit 5763405

Please sign in to comment.