From c34580ad961a1d6eda14a16aa7716f42a132bdb2 Mon Sep 17 00:00:00 2001 From: Fernando Bunn Date: Mon, 20 May 2024 11:26:04 +0100 Subject: [PATCH] Fix debug UI (#2795) Task/Issue URL: https://app.asana.com/0/1201011656765697/1207356723564109/f **Description**: Fix debug UI using the wrong init method --- .../DebugUI/DataBrokerRunCustomJSONViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LocalPackages/DataBrokerProtection/Sources/DataBrokerProtection/DebugUI/DataBrokerRunCustomJSONViewController.swift b/LocalPackages/DataBrokerProtection/Sources/DataBrokerProtection/DebugUI/DataBrokerRunCustomJSONViewController.swift index 46deebb2c3..63948be0bc 100644 --- a/LocalPackages/DataBrokerProtection/Sources/DataBrokerProtection/DebugUI/DataBrokerRunCustomJSONViewController.swift +++ b/LocalPackages/DataBrokerProtection/Sources/DataBrokerProtection/DebugUI/DataBrokerRunCustomJSONViewController.swift @@ -24,7 +24,7 @@ public final class DataBrokerRunCustomJSONViewController: NSViewController { public init(authenticationManager: DataBrokerProtectionAuthenticationManaging) { self.authenticationManager = authenticationManager - super.init() + super.init(nibName: nil, bundle: nil) } required init?(coder: NSCoder) {