Skip to content

Commit 164448c

Browse files
committed
lint fix
1 parent 1ace19c commit 164448c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/app/src/heartbeatService.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,10 @@ export class HeartbeatServiceImpl implements HeartbeatService {
127127
await this._heartbeatsCachePromise;
128128
}
129129
// If it's still null or the array is empty, there is no data to send.
130-
if (this._heartbeatsCache?.heartbeats == null ||
131-
this._heartbeatsCache.heartbeats.length === 0) {
130+
if (
131+
this._heartbeatsCache?.heartbeats == null ||
132+
this._heartbeatsCache.heartbeats.length === 0
133+
) {
132134
return '';
133135
}
134136
const date = getUTCDateString();

0 commit comments

Comments
 (0)