We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 867bfba commit ca444a5Copy full SHA for ca444a5
src/features/dashboard/templates/table-cells.tsx
@@ -296,11 +296,9 @@ export function EnvdVersionCell({
296
const versionValue =
297
valueString && valueString !== INVALID_ENVD_VERSION ? valueString : null
298
299
- const isNotV2Compatible =
300
- isVersionCompatible(
301
- versionValue ?? SDK_V2_MINIMAL_ENVD_VERSION,
302
- SDK_V2_MINIMAL_ENVD_VERSION
303
- ) === false
+ const isNotV2Compatible = versionValue
+ ? isVersionCompatible(versionValue, SDK_V2_MINIMAL_ENVD_VERSION) === false
+ : false
304
return (
305
<div
306
className={cn(
0 commit comments