From dc27ddcbabb3acc5b881082ed8c95cb685bc8da5 Mon Sep 17 00:00:00 2001 From: Yaacov Rydzinski Date: Thu, 12 Sep 2024 20:56:46 +0300 Subject: [PATCH] chore(deps): remove prettier-ignore fixed by deps upgrade --- src/type/definition.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/type/definition.ts b/src/type/definition.ts index cef415c90d..b0e783b691 100644 --- a/src/type/definition.ts +++ b/src/type/definition.ts @@ -718,10 +718,10 @@ export class GraphQLObjectType { this.extensions = toObjMap(config.extensions); this.astNode = config.astNode; this.extensionASTNodes = config.extensionASTNodes ?? []; - - // prettier-ignore - // FIXME: blocked by https://github.com/prettier/prettier/issues/14625 - this._fields = (defineFieldMap).bind(undefined, config.fields); + this._fields = (defineFieldMap).bind( + undefined, + config.fields, + ); this._interfaces = defineInterfaces.bind(undefined, config.interfaces); } @@ -1035,10 +1035,10 @@ export class GraphQLInterfaceType { this.extensions = toObjMap(config.extensions); this.astNode = config.astNode; this.extensionASTNodes = config.extensionASTNodes ?? []; - - // prettier-ignore - // FIXME: blocked by https://github.com/prettier/prettier/issues/14625 - this._fields = (defineFieldMap).bind(undefined, config.fields); + this._fields = (defineFieldMap).bind( + undefined, + config.fields, + ); this._interfaces = defineInterfaces.bind(undefined, config.interfaces); }