Skip to content

Commit

Permalink
Fix - Correction d'une possible nullexception
Browse files Browse the repository at this point in the history
  • Loading branch information
noelmugnier committed Feb 12, 2021
1 parent f17c9f2 commit 4896d5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sheaft.GraphQL/Types/Outputs/BusinessProfileType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ protected override void Configure(IObjectTypeDescriptor<BusinessProfileDto> desc
.Type<NonNullType<StringType>>();

descriptor.Field(c => c.Address)
.Type<NonNullType<AddressType>>();
.Type<AddressType>();
}
}
}

0 comments on commit 4896d5f

Please sign in to comment.