Skip to content

Commit 5d30717

Browse files
committed
format
1 parent 59b45a6 commit 5d30717

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

BDKSwiftExampleWallet/View/SettingsView.swift

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ struct SettingsView: View {
1515
@State private var isSeedPresented = false
1616

1717
var body: some View {
18-
18+
1919
NavigationStack {
20-
20+
2121
Form {
22-
22+
2323
Section(header: Text("Network")) {
2424
if let network = viewModel.network, let url = viewModel.esploraURL {
2525
Text(network.capitalized)
@@ -40,7 +40,7 @@ struct SettingsView: View {
4040
}
4141
}
4242
}
43-
43+
4444
Section(header: Text("Wallet")) {
4545
Button {
4646
Task {
@@ -57,7 +57,7 @@ struct SettingsView: View {
5757
.animation(.easeInOut, value: viewModel.inspectedScripts)
5858
}
5959
}
60-
60+
6161
Section(header: Text("Danger Zone")) {
6262
Button {
6363
showingShowSeedConfirmation = true
@@ -74,14 +74,14 @@ struct SettingsView: View {
7474
}
7575
}
7676
}
77-
77+
7878
}
7979
.navigationTitle("Settings")
8080
.onAppear {
8181
viewModel.getNetwork()
8282
viewModel.getEsploraUrl()
8383
}
84-
84+
8585
}
8686
.sheet(isPresented: $isSeedPresented) {
8787
SeedView(viewModel: .init())

0 commit comments

Comments
 (0)