Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danjm committed Jan 27, 2023
1 parent cddca59 commit 8d80a46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ describe('Confirm Transaction Duck', () => {
conversionRate: 468.58,
currentCurrency: 'usd',
provider: {
ticker: 'ETH'
ticker: 'ETH',
},
},
confirmTransaction: {
Expand Down
4 changes: 1 addition & 3 deletions ui/pages/send/gas-display/gas-display.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ export default function GasDisplay({ gasError }) {
const useCurrencyRateCheck = useSelector(getUseCurrencyRateCheck);
const { showFiatInTestnets, useNativeCurrencyAsPrimaryCurrency } =
useSelector(getPreferences);
const { provider, unapprovedTxs } = useSelector(
(state) => state.metamask,
);
const { provider, unapprovedTxs } = useSelector((state) => state.metamask);
const nativeCurrency = provider.ticker;
const { chainId } = provider;
const networkName = NETWORK_TO_NAME_MAP[chainId];
Expand Down

0 comments on commit 8d80a46

Please sign in to comment.