Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kugel3 committed Nov 23, 2023
1 parent 7a33386 commit 8ab1759
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,9 @@ public struct PoolUnit: Sendable, FeatureReducer {
}

public var body: some ReducerOf<Self> {
Scope(
state: /State.details,
action: /Action.details,
child: PoolUnitDetails.init
)
Scope(state: /State.details, action: /Action.details) {
PoolUnitDetails()
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ extension TransactionFee.NormalFeeCustomization {
}
}

extension RETDecimal {
private extension RETDecimal {
func formatted(showsZero: Bool) -> String {
if !showsZero, isZero() {
return L10n.CustomizeNetworkFees.noneDue
Expand Down

0 comments on commit 8ab1759

Please sign in to comment.