Skip to content

Commit be58053

Browse files
feature(#17): force a change to detect updates to the SDK package in order to synchronize the SDK version. Contracts with the SDK
1 parent 54e4e51 commit be58053

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Packages/Federation.Sdk/Source/Helpers/QueryParametersHelper.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ public static string ToQueryString<TParameters>(TParameters instance)
1313
foreach (var property in properties)
1414
{
1515
var value = property.GetValue(instance);
16-
if (value is null) continue;
16+
if (value is null)
17+
continue;
1718

1819
string name = ToCamelCase(property.Name);
1920
string stringValue = value switch

0 commit comments

Comments
 (0)