Skip to content

Commit

Permalink
fix(swiftformat): Apply Swiftformat changes
Browse files Browse the repository at this point in the history
  • Loading branch information
runner authored and runner committed Feb 20, 2024
1 parent 1fba6d4 commit 15c6cfb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion p2p_wallet/Scenes/DebugMenu/View/FlagDebugMenuView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ struct FlagDebugMenuView: View {
DebugText(title: "Mocked API Gateway", value: "\(available(.mockedApiGateway))")
DebugText(title: "Mocked TKey Facade", value: "\(available(.mockedTKeyFacade))")
DebugText(title: "Onboarding Username", value: "\(available(.onboardingUsernameEnabled))")
DebugText(title: "Onboarding Username Button Skip", value: "\(available(.onboardingUsernameButtonSkipEnabled))")
DebugText(
title: "Onboarding Username Button Skip",
value: "\(available(.onboardingUsernameButtonSkipEnabled))"
)
DebugText(title: "PnL", value: "\(available(.pnlEnabled))")
DebugText(title: "Referral Program", value: "\(available(.referralProgramEnabled))")
DebugText(title: "Send Via Link", value: "\(available(.sendViaLinkEnabled))")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ class RecipientSearchViewModel: ObservableObject {
func load() async {
loadingState = .loading
do {
let _ = try await (
let _ = try await(
loadSwapService(),
checkIfSendViaLinkAvailable()
)
Expand Down

0 comments on commit 15c6cfb

Please sign in to comment.