diff --git a/backend/src/Designer/Services/Implementation/TextsService.cs b/backend/src/Designer/Services/Implementation/TextsService.cs index 77ab13f617b..6d4669b9e2b 100644 --- a/backend/src/Designer/Services/Implementation/TextsService.cs +++ b/backend/src/Designer/Services/Implementation/TextsService.cs @@ -352,10 +352,7 @@ private async Task UpdateKeysInLayoutsInLayoutSet(string org, string app, string { foreach (TextIdMutation mutation in keyMutations) { - if (UpdateKeyInLayoutObject(layoutObject, mutation)) - { - hasMutated = true; - } + hasMutated |= UpdateKeyInLayoutObject(layoutObject, mutation); } }