Skip to content

Commit e0e7c58

Browse files
committed
chore: remove redundant negation
1 parent 4e25440 commit e0e7c58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/charts/SavedValues/SavedValuesList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export default function SavedValuesList() {
105105
toDeployChartView ? URLS.DEPLOY_CHART : URLS.PRESET_VALUES
106106
}/${chartValueId}`,
107107
)
108-
if (!!chartValueId) {
108+
if (chartValueId) {
109109
handleAnalyticsEvent({ category: 'Chart Store', action: 'CS_CHART_PRESET_VALUES_NEW' })
110110
}
111111
}

0 commit comments

Comments
 (0)