Skip to content

Commit

Permalink
remove print()
Browse files Browse the repository at this point in the history
  • Loading branch information
atlou committed Mar 25, 2024
1 parent 3e4b22f commit 2e8f199
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/CenteredStack/CenteredStack.swift
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private struct Centered: ViewModifier {
@Environment(\.parentContainer) var parentContainer

func body(content: Content) -> some View {
print(self.parentContainer)
// print(self.parentContainer)
switch self.parentContainer {
case .hStack:
return AnyView(content.alignmentGuide(HorizontalAlignment.centered) { d in
Expand Down

0 comments on commit 2e8f199

Please sign in to comment.