Skip to content

Commit 2b42a70

Browse files
authored
chore(deps): remove prettier-ignore (#4191)
fixed by deps upgrade
1 parent e614f8f commit 2b42a70

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/type/definition.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -718,10 +718,10 @@ export class GraphQLObjectType<TSource = any, TContext = any> {
718718
this.extensions = toObjMap(config.extensions);
719719
this.astNode = config.astNode;
720720
this.extensionASTNodes = config.extensionASTNodes ?? [];
721-
722-
// prettier-ignore
723-
// FIXME: blocked by https://github.com/prettier/prettier/issues/14625
724-
this._fields = (defineFieldMap<TSource, TContext>).bind(undefined, config.fields);
721+
this._fields = (defineFieldMap<TSource, TContext>).bind(
722+
undefined,
723+
config.fields,
724+
);
725725
this._interfaces = defineInterfaces.bind(undefined, config.interfaces);
726726
}
727727

@@ -1035,10 +1035,10 @@ export class GraphQLInterfaceType<TSource = any, TContext = any> {
10351035
this.extensions = toObjMap(config.extensions);
10361036
this.astNode = config.astNode;
10371037
this.extensionASTNodes = config.extensionASTNodes ?? [];
1038-
1039-
// prettier-ignore
1040-
// FIXME: blocked by https://github.com/prettier/prettier/issues/14625
1041-
this._fields = (defineFieldMap<TSource, TContext>).bind(undefined, config.fields);
1038+
this._fields = (defineFieldMap<TSource, TContext>).bind(
1039+
undefined,
1040+
config.fields,
1041+
);
10421042
this._interfaces = defineInterfaces.bind(undefined, config.interfaces);
10431043
}
10441044

0 commit comments

Comments
 (0)