Skip to content

Commit

Permalink
fix local lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
SabrinaTardio committed Oct 6, 2023
1 parent 25177f7 commit 4fdbc1e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion DuckDuckGo/SyncSettingsViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,11 @@ extension SyncSettingsViewController: ScanOrPasteCodeViewModelDelegate {
.sink { [weak self] devices in
guard let self else { return }
self.dismissPresentedViewController()
self.showDeviceConnected(devices.filter { !$0.isThisDevice }, optionsModel: self.rootView.model, isSingleSetUp: false, isActiveSyncDevice: true)
self.showDeviceConnected(
devices.filter { !$0.isThisDevice },
optionsModel: self.rootView.model,
isSingleSetUp: false,
isActiveSyncDevice: true)
}.store(in: &cancellables)
try await syncService.transmitRecoveryKey(connectKey)
return true
Expand Down

0 comments on commit 4fdbc1e

Please sign in to comment.