Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: implementation / enhancements of analytics #348

Merged
merged 8 commits into from
Mar 21, 2024
Prev Previous commit
refactor: address review feedback
  • Loading branch information
saeedbashir committed Mar 20, 2024
commit 8d0f454d3851cb9f0b53315406297521501ae789
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ public class DeleteAccountViewModel: ObservableObject {
public let connectivity: ConnectivityProtocol
let analytics: ProfileAnalytics

public init(interactor: ProfileInteractorProtocol, router: ProfileRouter, connectivity: ConnectivityProtocol, analytics: ProfileAnalytics) {
public init(
interactor: ProfileInteractorProtocol,
router: ProfileRouter,
connectivity: ConnectivityProtocol,
analytics: ProfileAnalytics
) {
self.interactor = interactor
self.router = router
self.connectivity = connectivity
Expand Down
Loading