Skip to content

Commit

Permalink
fix: linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
Saelmala committed Aug 30, 2024
1 parent ad64c9d commit 2347751
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/api/manager/job/syncInventory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ export async function runSyncInventory() {
return {
...inventorySource,
status: apiSource.status,
lastConnected: apiSource.status !== 'gone' ? new Date() : inventorySource.lastConnected
lastConnected:
apiSource.status !== 'gone' ? new Date() : inventorySource.lastConnected
} satisfies WithId<Source>;
});

Expand Down

0 comments on commit 2347751

Please sign in to comment.