diff --git a/examples/FeatureFlagDemo/Controllers/HomeController.cs b/examples/FeatureFlagDemo/Controllers/HomeController.cs index e7bfcd43..b87799fc 100644 --- a/examples/FeatureFlagDemo/Controllers/HomeController.cs +++ b/examples/FeatureFlagDemo/Controllers/HomeController.cs @@ -31,7 +31,7 @@ public async Task About() if (await _featureManager.IsEnabledAsync(MyFeatureFlags.CustomViewData)) { ViewData["Message"] = $"This is FANCY CONTENT you can see only if '{MyFeatureFlags.CustomViewData}' is enabled."; - }; + } return View(); }