Skip to content

Commit 8dcfd30

Browse files
committed
Fix typo
1 parent 11bd4b9 commit 8dcfd30

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/javascript-api/src/lib/services/graphql/graphql.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export class GraphqlService {
111111
ConnectionStatus.DISCONNECTED,
112112
);
113113

114-
private subcriptionsCount = 0;
114+
private subscriptionsCount = 0;
115115

116116
private subscriptions: Subscription[] = [];
117117

@@ -285,7 +285,7 @@ export class GraphqlService {
285285
}
286286

287287
return new Observable((subscriber) => {
288-
const messageId = `${++this.subcriptionsCount}`;
288+
const messageId = `${++this.subscriptionsCount}`;
289289
this.subscriptions.push({ messageId, query });
290290

291291
this.sendMessage(messageId, MessageType.GQL_START, { query }).catch(

0 commit comments

Comments
 (0)