Skip to content

Commit

Permalink
feat(suite): better UI for Ripple fee
Browse files Browse the repository at this point in the history
  • Loading branch information
izmy authored and tomasklim committed Jan 28, 2025
1 parent 91189b3 commit 2e4b0b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/suite/src/components/wallet/Fees/FeeDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const EthereumDetails = ({
};

const RippleDetails = ({ networkType, selectedLevel, showFee }: DetailsProps) =>
showFee && <Item label={selectedLevel.feePerUnit}>{getFeeUnits(networkType)}</Item>;
showFee && <Item label={getFeeUnits(networkType)}>{selectedLevel.feePerUnit}</Item>;

export const FeeDetails = (props: DetailsProps) => {
const { networkType } = props;
Expand Down

0 comments on commit 2e4b0b9

Please sign in to comment.