Skip to content

Commit 830b6e6

Browse files
committed
fixed formatting
1 parent 31362b3 commit 830b6e6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

BitwardenShared/UI/Platform/Application/Views/BitwardenMenuFooterTextView.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,12 @@ import SwiftUI
66
/// A text view for the footer on BitwardenMenu
77
///
88
struct BitwardenMenuFooterTextField: View {
9-
109
/// The content of the text view.
1110
private let content: Text
12-
11+
1312
/// The bottom padding of the text view.
1413
private let topPadding: CGFloat
15-
14+
1615
/// The bottom padding of the text view.
1716
private let bottomPadding: CGFloat
1817

@@ -21,20 +20,21 @@ struct BitwardenMenuFooterTextField: View {
2120
self.topPadding = topPadding
2221
self.bottomPadding = bottomPadding
2322
}
24-
23+
2524
init(_ title: LocalizedStringKey, topPadding: CGFloat = 0, bottomPadding: CGFloat = 12) {
2625
content = Text(title)
2726
self.topPadding = topPadding
2827
self.bottomPadding = bottomPadding
2928
}
30-
29+
3130
init(_ title: String, topPadding: CGFloat = 0, bottomPadding: CGFloat = 12) {
3231
content = Text(title)
3332
self.topPadding = topPadding
3433
self.bottomPadding = bottomPadding
3534
}
3635

3736
// MARK: View
37+
3838
var body: some View {
3939
content
4040
.styleGuide(.footnote, includeLinePadding: false, includeLineSpacing: false)

BitwardenShared/UI/Platform/Settings/Settings/AutoFill/AutoFillView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ struct AutoFillView: View {
7272
accessibilityIdentifier: "CopyTotpAutomaticallySwitch"
7373
)
7474
.contentBlock()
75-
75+
7676
BitwardenMenuField(
7777
title: Localizations.defaultUriMatchDetection,
7878
accessibilityIdentifier: "DefaultUriMatchDetectionChooser",

0 commit comments

Comments
 (0)