Skip to content

Commit

Permalink
- Fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
AZielinsky95 committed Mar 1, 2022
1 parent 33cf23f commit afcec9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions DebugMenu/DebugMenu/DebugPasswordEntry.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ import CommonCrypto

struct DebugPasswordEntry: ViewModifier {

private let debugDataSource: DebugMenuDataSource
private let debugDataSource: BaseDebugDataSource
private let longPressDuration: CGFloat
private let passwordHash: String
@State private var showDialog = false
@State private var showDebugMenu = false
private let forceShow: Binding<Bool>?

init(dataSource: DebugMenuDataSource,
init(dataSource: BaseDebugDataSource,
passwordSHA256: String,
longPressDuration: CGFloat,
forceShow: Binding<Bool>? = nil) {
Expand Down Expand Up @@ -56,7 +56,7 @@ struct DebugPasswordEntry: ViewModifier {
}

public extension View {
func debugMenuNavigation(dataSource: DebugMenuDataSource,
func debugMenuNavigation(dataSource: BaseDebugDataSource,
passwordSHA256: String,
longPressDuration: CGFloat = 5.0,
forceShow: Binding<Bool>? = nil) -> some View {
Expand Down
2 changes: 1 addition & 1 deletion DebugMenu/DebugMenuExample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@
isa = XCRemoteSwiftPackageReference;
repositoryURL = "file:///Users/alejandrozielinsky/iOSProjects/debug-menu-ios";
requirement = {
branch = "az/userdefault-property-wrapper";
branch = main;
kind = branch;
};
};
Expand Down

0 comments on commit afcec9b

Please sign in to comment.