Skip to content

Commit 0448cdb

Browse files
committed
Remove unnecessary self reference
1 parent caa80af commit 0448cdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/Sources/Yosemite/Stores/BookingStore.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,13 +363,13 @@ private extension BookingStore {
363363
) {
364364
Task { @MainActor in
365365
do {
366-
if let remoteBooking = try await self.remote.updateBooking(
366+
if let remoteBooking = try await remote.updateBooking(
367367
from: siteID,
368368
bookingID: bookingID,
369369
attendanceStatus: nil,
370370
bookingStatus: .cancelled
371371
) {
372-
await self.upsertStoredBookingsInBackground(
372+
await upsertStoredBookingsInBackground(
373373
readOnlyBookings: [remoteBooking],
374374
readOnlyOrders: [],
375375
siteID: siteID

0 commit comments

Comments
 (0)