Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
vsanthanam committed Jul 8, 2023
1 parent 23a38ba commit 36c1cba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-docc-plugin",
"state" : {
"revision" : "9b1258905c21fc1b97bf03d1b4ca12c4ec4e5fda",
"version" : "1.2.0"
"revision" : "26ac5758409154cc448d7ab82389c520fa8a8247",
"version" : "1.3.0"
}
},
{
Expand Down
8 changes: 4 additions & 4 deletions Sources/SafariView/SafariView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -459,15 +459,15 @@ public struct SafariView: View {

func body(content: Content) -> some View {
content.background(
Presenter<Item>(item: $item,
build: build,
onDismiss: onDismiss)
Presenter(item: $item,
build: build,
onDismiss: onDismiss)
)
}

// MARK: - Private

private struct Presenter<Item>: UIViewRepresentable where Item: Identifiable {
private struct Presenter: UIViewRepresentable {

// MARK: - API

Expand Down

0 comments on commit 36c1cba

Please sign in to comment.