Skip to content

Commit 6ea0317

Browse files
committed
Garden
1 parent fcaafbe commit 6ea0317

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/SwiftUIVisualEffects/View Modifiers/BlurEffectModifier.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ public struct BlurEffectModifier: ViewModifier {
1010
public init() {}
1111

1212
public func body(content: Content) -> some View {
13-
content.overlay(_BlurVisualEffectViewRepresentable())
13+
content
14+
.overlay(_BlurVisualEffectViewRepresentable())
1415
}
1516
}

Sources/SwiftUIVisualEffects/View Modifiers/VibrancyEffectModifier.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ public struct VibrancyEffectModifier: ViewModifier {
1313
content
1414
// Hide the original content, keeping its intrinsic content size.
1515
.hidden()
16-
// Overlay the modified content.
1716
.overlay(_VibrancyVisualEffectViewRepresentable(content: content))
1817
}
1918
}

0 commit comments

Comments
 (0)