diff --git a/public/app/features/explore/state/utils.ts b/public/app/features/explore/state/utils.ts index 03356271701..73058097d2e 100644 --- a/public/app/features/explore/state/utils.ts +++ b/public/app/features/explore/state/utils.ts @@ -45,9 +45,9 @@ const loadLogsVolumeEnabled = (): boolean => { // we default to `enabled=true` if (data === 'false') { return false; - } else { - return true; } + + return true; }; /**