Skip to content

Commit

Permalink
[BottomSheet] Fix duplicate file/class name.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-zimmermann committed Jun 7, 2024
1 parent 53ff133 commit 9eb27e6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import UIKit

final class BottomSheetPresentingView: UIView {
final class BottomSheetPresentingUIView: UIView {

// MARK: - UI Elements
let presentSheetButton: UIButton = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
import UIKit
import SparkCore

final class BottomSheetPresentingViewController: UIViewController {
final class BottomSheetPresentingUIViewController: UIViewController {


// MARK: - Computed Properties

lazy var rootView = BottomSheetPresentingView()
lazy var rootView = BottomSheetPresentingUIView()

// MARK: - Lifecycle

Expand Down Expand Up @@ -80,9 +80,9 @@ final class BottomSheetPresentingViewController: UIViewController {
}

// MARK: - Builder
extension BottomSheetPresentingViewController {
extension BottomSheetPresentingUIViewController {

static func build() -> BottomSheetPresentingViewController {
return BottomSheetPresentingViewController()
static func build() -> BottomSheetPresentingUIViewController {
return BottomSheetPresentingUIViewController()
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ extension ComponentsViewController {
case .badge:
viewController = BadgeComponentViewController.build()
case .bottomSheet:
viewController = BottomSheetPresentingViewController.build()
viewController = BottomSheetPresentingUIViewController.build()
case .button:
viewController = ButtonComponentViewController.build()
case .iconButton:
Expand Down

0 comments on commit 9eb27e6

Please sign in to comment.