Skip to content

Commit

Permalink
Merge pull request #572 from oasisprotocol/mz/icon
Browse files Browse the repository at this point in the history
Show proper icon for not encrypted transaction
  • Loading branch information
buberdds committed Jun 21, 2023
2 parents c6699ed + 68d9de8 commit 64390fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .changelog/572.bugfix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Show proper icon for not encrypted transaction
3 changes: 2 additions & 1 deletion src/app/components/TransactionEncryptionStatus/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React, { FC } from 'react'
import { Trans, useTranslation } from 'react-i18next'
import LockIcon from '@mui/icons-material/Lock'
import NoEncryptionGmailerrorredIcon from '@mui/icons-material/NoEncryptionGmailerrorred'
import { COLORS } from '../../../styles/theme/colors'
import { RuntimeTransactionEncryptionEnvelope } from '../../../oasis-indexer/api'
import Tooltip from '@mui/material/Tooltip'
Expand Down Expand Up @@ -35,7 +36,7 @@ export const TransactionNotEncrypted = () => {
enterDelay={tooltipDelay}
enterNextDelay={tooltipDelay}
>
<LockIcon htmlColor={COLORS.grayMedium2} />
<NoEncryptionGmailerrorredIcon htmlColor={COLORS.grayMedium2} />
</Tooltip>
)
}
Expand Down

0 comments on commit 64390fd

Please sign in to comment.