Skip to content

Commit

Permalink
Fix debug UI (#2795)
Browse files Browse the repository at this point in the history
Task/Issue URL:
https://app.asana.com/0/1201011656765697/1207356723564109/f

**Description**:
Fix debug UI using the wrong init method
  • Loading branch information
Bunn authored May 20, 2024
1 parent 5cf0022 commit c34580a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit c34580a

Please sign in to comment.