Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronfigueiredo committed Nov 20, 2024
1 parent 6923756 commit 1cacddd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const EditGasFeesRow = ({
setShowCustomizeGasPopover,
}: {
fiatFee: string;
fiatFeeWith18SignificantDigits: string;
fiatFeeWith18SignificantDigits: string | null;
nativeFee: string;
supportsEIP1559: boolean;
setShowCustomizeGasPopover: Dispatch<SetStateAction<boolean>>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const GasFeesRow = ({
label: string;
tooltipText: string;
fiatFee: string;
fiatFeeWith18SignificantDigits: string;
fiatFeeWith18SignificantDigits: string | null;
nativeFee: string;
'data-testid'?: string;
}) => {
Expand Down

0 comments on commit 1cacddd

Please sign in to comment.