Skip to content

Commit

Permalink
⚡️ :: 픽커 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
BJCHO0501 committed Aug 29, 2023
1 parent c20c143 commit d35b83f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ struct SDPhotoPickerModifier: ViewModifier {
self.isPresented = isPresented
self.singleSelection = selection
self.multipleSelection = nil
self.isError = errorAction
self.errorAction = errorAction
}

init(isPresented: Binding<Bool>, selection: Binding<[UIImage]>, errorAction: (() -> Void)?) {
self.isPresented = isPresented
self.singleSelection = nil
self.multipleSelection = selection
self.isError = errorAction
self.errorAction = errorAction
}

func body(content: Content) -> some View {
Expand Down

0 comments on commit d35b83f

Please sign in to comment.