mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-22 08:20:59 +00:00
Cleanup
This commit is contained in:
parent
219703ecc7
commit
923927cddd
2 changed files with 0 additions and 11 deletions
|
@ -302,13 +302,3 @@ struct AddAccountView: View {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
struct SafariView: UIViewControllerRepresentable {
|
|
||||||
let url: URL
|
|
||||||
|
|
||||||
func makeUIViewController(context _: UIViewControllerRepresentableContext<SafariView>) -> SFSafariViewController {
|
|
||||||
SFSafariViewController(url: url)
|
|
||||||
}
|
|
||||||
|
|
||||||
func updateUIViewController(_: SFSafariViewController, context _: UIViewControllerRepresentableContext<SafariView>) {}
|
|
||||||
}
|
|
||||||
|
|
|
@ -9,7 +9,6 @@ public struct TrendingLinksListView: View {
|
||||||
@Environment(Client.self) private var client
|
@Environment(Client.self) private var client
|
||||||
|
|
||||||
@State private var links: [Card]
|
@State private var links: [Card]
|
||||||
@State private var isLoadingNextPage = false
|
|
||||||
|
|
||||||
public init(cards: [Card]) {
|
public init(cards: [Card]) {
|
||||||
_links = .init(initialValue: cards)
|
_links = .init(initialValue: cards)
|
||||||
|
|
Loading…
Reference in a new issue