1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Remove unnecessary parenthesis

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2020-12-09 09:55:28 +03:00
parent 5eb46498b1
commit 1587eef598

View File

@ -69,7 +69,7 @@ export const ClusterMetrics = observer(() => {
const options = metricType === MetricType.CPU ? cpuOptions : memoryOptions;
const renderMetrics = () => {
if ((!metricValues.length) && !metricsLoaded) {
if (!metricValues.length && !metricsLoaded) {
return <Spinner center/>;
}