Skip to content

Commit 6589bd6

Browse files
committed
Address Feedback
1 parent dbb7f06 commit 6589bd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/firestore/src/platform/node/grpc_connection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ export class GrpcConnection implements Connection {
177177
logDebug(LOG_TAG, `RPC ${rpcName} received result:`, response);
178178
results.push(response);
179179
if (
180-
typeof expectedResponseCount !== 'undefined' &&
180+
expectedResponseCount !== undefined &&
181181
results.length === expectedResponseCount
182182
) {
183183
callbackFired = true;

0 commit comments

Comments
 (0)