File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -718,10 +718,10 @@ export class GraphQLObjectType<TSource = any, TContext = any> {
718
718
this . extensions = toObjMap ( config . extensions ) ;
719
719
this . astNode = config . astNode ;
720
720
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
+ ) ;
725
725
this . _interfaces = defineInterfaces . bind ( undefined , config . interfaces ) ;
726
726
}
727
727
@@ -1035,10 +1035,10 @@ export class GraphQLInterfaceType<TSource = any, TContext = any> {
1035
1035
this . extensions = toObjMap ( config . extensions ) ;
1036
1036
this . astNode = config . astNode ;
1037
1037
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
+ ) ;
1042
1042
this . _interfaces = defineInterfaces . bind ( undefined , config . interfaces ) ;
1043
1043
}
1044
1044
You can’t perform that action at this time.
0 commit comments