Skip to content

Commit fd1fcd9

Browse files
committed
Fix missing refs
1 parent 6b6fedb commit fd1fcd9

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

packages/cli/src/commands/auth.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@ export default class AuthCommand extends Command {
3434
this.error('✖ Deploy key must not exceed 200 characters', { exit: 1 });
3535
}
3636

37-
if (product === 'hosted-service' || node?.match(/api.thegraph.com/)) {
38-
this.error('✖ The hosted service is deprecated', { exit: 1 });
39-
}
40-
4137
try {
4238
await saveDeployKey(node!, deployKey);
4339
print.success(`Deploy key set for ${node}`);

packages/cli/src/commands/deploy.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,6 @@ export default class DeployCommand extends Command {
125125
this.error('No Graph node provided');
126126
}
127127

128-
const isStudio = node.match(/studio/);
129-
130128
const requestUrl = new URL(node);
131129
const client = createJsonRpcClient(requestUrl);
132130

0 commit comments

Comments
 (0)