Skip to content

Commit

Permalink
fix: optional 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
jongnan committed Aug 11, 2024
1 parent 1f32b5c commit ee493d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Projects/Core/DesignSystem/Sources/View/CircleButton.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ public struct CircleButton: View {
width: CGFloat,
height: CGFloat,
image: SwiftUI.Image,
shadowColor: SwiftUI.Color? = Color.Shadow.primary,
shadowColor: SwiftUI.Color = Color.Shadow.primary,
action: @escaping () -> Void
) {
self.width = width
self.height = height
self.image = image
self.shadowColor = shadowColor ?? Color.Shadow.primary
self.shadowColor = shadowColor
self.action = action
}

Expand Down

0 comments on commit ee493d9

Please sign in to comment.