We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68bef81 commit c45d70bCopy full SHA for c45d70b
WooCommerce/Classes/Authentication/Epilogue/StorePickerError.swift
@@ -1,5 +1,17 @@
1
import SwiftUI
2
3
+/// Hosting controller wrapper for `StorePickerError`
4
+///
5
+final class StorePickerErrorHostingController: UIHostingController<StorePickerError> {
6
+ init() {
7
+ super.init(rootView: StorePickerError())
8
+ }
9
+ required dynamic init?(coder aDecoder: NSCoder) {
10
+ fatalError("init(coder:) has not been implemented")
11
12
+}
13
+
14
15
/// Generic Store Picker error view that allows the user to contact support.
16
///
17
struct StorePickerError: View {
0 commit comments