From 4896d5f87f7200151529f8e550fdda131ae3254f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?No=C3=ABl=20Mugnier?= Date: Fri, 12 Feb 2021 19:34:49 +0100 Subject: [PATCH] Fix - Correction d'une possible nullexception --- Sheaft.GraphQL/Types/Outputs/BusinessProfileType.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sheaft.GraphQL/Types/Outputs/BusinessProfileType.cs b/Sheaft.GraphQL/Types/Outputs/BusinessProfileType.cs index 83809d02d..7d0937157 100644 --- a/Sheaft.GraphQL/Types/Outputs/BusinessProfileType.cs +++ b/Sheaft.GraphQL/Types/Outputs/BusinessProfileType.cs @@ -25,7 +25,7 @@ protected override void Configure(IObjectTypeDescriptor desc .Type>(); descriptor.Field(c => c.Address) - .Type>(); + .Type(); } } }