Skip to content

Commit

Permalink
Merge pull request #2527 from kaloudis/refactor-remove-sats-component
Browse files Browse the repository at this point in the history
Refactor: remove Sats component
  • Loading branch information
kaloudis authored Nov 15, 2024
2 parents 56c8d9f + 46a0b11 commit 6423484
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 25 deletions.
23 changes: 0 additions & 23 deletions components/Sats.tsx

This file was deleted.

3 changes: 1 addition & 2 deletions views/Routing/RoutingHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { themeColor } from '../../utils/ThemeUtils';
import { Body } from '../../components/text/Body';
import { Row } from '../../components/layout/Row';
import { Spacer } from '../../components/layout/Spacer';
import { Sats } from '../../components/Sats';
import Amount from '../../components/Amount';

function TotalRow({
Expand All @@ -34,7 +33,7 @@ function TotalRow({
<Spacer width={8} />
<Body secondary>{kind}</Body>
</Row>
<Sats sats={amount} />
<Amount sats={amount} toggleable />
</Row>
);
}
Expand Down

0 comments on commit 6423484

Please sign in to comment.