Skip to content

Commit

Permalink
fixed eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
seeden committed Aug 6, 2023
1 parent 594f705 commit 0395252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/src/services/Daemon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export default class Daemon extends Service {
return;
}
} catch (error) {
log(`Service ping: ${service} failed. ${error.message}`);
log(`Service ping: ${service} failed. ${(error as Error).message}`);
}
} else {
const { isRunning } = await this.isRunning({ service });
Expand Down

0 comments on commit 0395252

Please sign in to comment.