Skip to content

Commit

Permalink
Minor change to trigger CI/CD to TestFlight (NI-189) (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianricaldoni authored Mar 8, 2024
1 parent ac55cbe commit cd071cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions Balance/ActivityLogging/ActivityLogStore.swift
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,7 @@ class ActivityLogStore: ObservableObject {
case .failure(let error):
print(error.localizedDescription)
case .success(let logs):
self.logs = logs.filter({
$0.id != log.id
})
self.logs = logs.filter { $0.id != log.id }
self.logs.append(log)

ActivityLogStore.save(logs: self.logs) { result in
Expand Down
2 changes: 1 addition & 1 deletion Balance/Home/Home.swift
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ struct HomeView: View {
}
.onChange(of: counter.count, perform: { _ in
if counter.count > UserDefaults.standard.double(forKey: bpmKEY) {
print(counter.count)
// print(counter.count)
alertHeartRate()
}
})
Expand Down

0 comments on commit cd071cb

Please sign in to comment.