We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ace19c commit 164448cCopy full SHA for 164448c
packages/app/src/heartbeatService.ts
@@ -127,8 +127,10 @@ export class HeartbeatServiceImpl implements HeartbeatService {
127
await this._heartbeatsCachePromise;
128
}
129
// 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) {
+ if (
+ this._heartbeatsCache?.heartbeats == null ||
132
+ this._heartbeatsCache.heartbeats.length === 0
133
+ ) {
134
return '';
135
136
const date = getUTCDateString();
0 commit comments