Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zugdev committed Oct 19, 2024
1 parent 4844f6b commit dd6a33e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/home/fetch-github/fetch-issues-full.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export async function postLoadUpdateIssues() {
const cachedIssues = taskManager.getTasks();
const fetchedIssues = await fetchIssues();

if(issuesAreDifferent(cachedIssues, fetchedIssues)) {
if (issuesAreDifferent(cachedIssues, fetchedIssues)) {
console.log("Issues are different, updating cache");
await saveIssuesToCache(fetchedIssues);
await taskManager.syncTasks();
Expand Down
2 changes: 1 addition & 1 deletion src/home/getters/get-indexed-db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,4 @@ export async function getIssuesFromCache(): Promise<GitHubIssue[]> {
request.onsuccess = () => resolve(request.result || []);
request.onerror = () => reject(request.error);
});
}
}

0 comments on commit dd6a33e

Please sign in to comment.