From 9b700142137b36d990bd87326e6bd25eacab06e8 Mon Sep 17 00:00:00 2001 From: Daniel Silva Date: Sat, 9 Sep 2023 03:40:41 +0300 Subject: [PATCH] prettier --- src/libs/actions/OnyxUpdates.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/actions/OnyxUpdates.js b/src/libs/actions/OnyxUpdates.js index 5c4d3bf93a65..8e45e7dd2e66 100644 --- a/src/libs/actions/OnyxUpdates.js +++ b/src/libs/actions/OnyxUpdates.js @@ -42,7 +42,7 @@ function applyHTTPSOnyxUpdates(request, response) { }) .then(() => { console.debug('[OnyxUpdateManager] Done applying HTTPS update'); - return Promise.resolve(response);; + return Promise.resolve(response); }); } @@ -68,7 +68,7 @@ function applyPusherOnyxUpdates(updates) { * @returns {Promise} */ function apply({lastUpdateID, type, request, response, updates}) { - console.debug(`[OnyxUpdateManager] Applying update type: ${type} with lastUpdateID: ${lastUpdateID}`, { request, response, updates } ); + console.debug(`[OnyxUpdateManager] Applying update type: ${type} with lastUpdateID: ${lastUpdateID}`, {request, response, updates}); if (lastUpdateID && lastUpdateID < lastUpdateIDAppliedToClient) { console.debug('[OnyxUpdateManager] Update received was older than current state, returning without applying the updates');