Skip to content

Commit 122dca8

Browse files
committed
fix: eslint type error
1 parent 5a5fc4b commit 122dca8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli-kit/src/public/node/custom-oclif-loader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export class ShopifyConfig extends Config {
4848

4949
if (!externalHydrogenPlugin) return
5050

51-
if (typeof (this as {[key: string]: unknown})._commands === 'undefined') {
51+
if (typeof (this as unknown as {[key: string]: unknown})._commands === 'undefined') {
5252
throw new Error('ShopifyConfig: oclif internals changed. _commands is no longer available.')
5353
}
5454

0 commit comments

Comments
 (0)