Skip to content

Commit

Permalink
use arrow
Browse files Browse the repository at this point in the history
  • Loading branch information
john-tco committed Oct 24, 2023
1 parent f37d429 commit 1ab853b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/notifications/v2/notifications.savedSearch.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class SavedSearchNotificationsService {
}
};

async processSavedSearchMatches() {
processSavedSearchMatches = async () => {
console.log('Running process new saved search matches...');

const startTime = performance.now();
Expand Down Expand Up @@ -149,9 +149,9 @@ export class SavedSearchNotificationsService {
`Task took ${endTime - startTime} milliseconds to run \r\n`,
);
}
}
};

async processSavedSearchMatchesNotifications() {
processSavedSearchMatchesNotifications = async () => {
console.log('Running Process Saved Search Matches Notifications...');

const startTime = performance.now();
Expand Down Expand Up @@ -184,5 +184,5 @@ export class SavedSearchNotificationsService {
} milliseconds to run \r\n`,
);
}
}
};
}

0 comments on commit 1ab853b

Please sign in to comment.