Skip to content

Commit

Permalink
Temp changes to use custom devbox URL for FE review
Browse files Browse the repository at this point in the history
  • Loading branch information
miasma13 committed Dec 11, 2024
1 parent 9f401dd commit 37094e4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions DuckDuckGo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -11722,8 +11722,8 @@
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/DuckDuckGo/BrowserServicesKit";
requirement = {
kind = exactVersion;
version = 221.0.0;
branch = "michal/tmp-intpp-review";
kind = branch;
};
};
9F8FE9472BAE50E50071E372 /* XCRemoteSwiftPackageReference "lottie-spm" */ = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/DuckDuckGo/BrowserServicesKit",
"state" : {
"revision" : "9975e63265e617ce9c25ae1be6d531f6de5e6592",
"version" : "221.0.0"
"branch" : "michal/tmp-intpp-review",
"revision" : "cb81b08e1f1b4029a26db32e7fedf6bab5240393"
}
},
{
Expand Down Expand Up @@ -138,7 +138,7 @@
{
"identity" : "swift-argument-parser",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-argument-parser",
"location" : "https://github.com/apple/swift-argument-parser.git",
"state" : {
"revision" : "0fbc8848e389af3bb55c182bc19ca9d5dc2f255b",
"version" : "1.4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ final class SubscriptionEmailViewModel: ObservableObject {
// Read only View State - Should only be modified from the VM
@Published private(set) var state = State()

private static let allowedDomains = [ "duckduckgo.com" ]
private static let allowedDomains: [String] = []

enum SubscriptionRestoreError: Error {
case failedToRestoreFromEmail,
subscriptionExpired,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ final class SubscriptionFlowViewModel: ObservableObject {
// Read only View State - Should only be modified from the VM
@Published private(set) var state = State()

private static let allowedDomains = [ "duckduckgo.com" ]
private static let allowedDomains: [String] = []

private var webViewSettings = AsyncHeadlessWebViewSettings(bounces: false,
allowedDomains: allowedDomains,
contentBlocking: false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ final class SubscriptionITPViewModel: ObservableObject {
}

private var currentURL: URL?
private static let allowedDomains = [ "duckduckgo.com" ]
private static let allowedDomains: [String] = []

private var externalLinksViewModel: SubscriptionExternalLinkViewModel?
// Limit navigation to these external domains
Expand Down

0 comments on commit 37094e4

Please sign in to comment.