Skip to content

Commit

Permalink
fix: fix access level for appController from ScenariosManager
Browse files Browse the repository at this point in the history
  • Loading branch information
An Tran committed Feb 7, 2022
1 parent cfe0188 commit e026405
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Sources/Scenarios/AppController/ScenariosAppController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

import UIKit

final class ScenariosAppController: RootViewProviding {
let rootViewController = UIViewController()
public final class ScenariosAppController: RootViewProviding {
public let rootViewController = UIViewController()

private var rootViewProvider: RootViewProviding? {
didSet {
Expand Down
2 changes: 1 addition & 1 deletion Sources/Scenarios/BaseScenariosManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ open class BaseScenariosManager {
public static let disableAnimations = "disable_animations"
public static let disableHardwareKeyboard = "disable_hardware_keyboard"

let appController = ScenariosAppController()
public let appController = ScenariosAppController()

let targetAudience: Audience?

Expand Down

0 comments on commit e026405

Please sign in to comment.