diff --git a/internal/controller/install/common_helpers.go b/internal/controller/install/common_helpers.go index a95a9a5..4b61f01 100644 --- a/internal/controller/install/common_helpers.go +++ b/internal/controller/install/common_helpers.go @@ -637,7 +637,7 @@ func isNil(i any) bool { return true } switch iv.Kind() { - case reflect.Ptr, reflect.Slice, reflect.Map, reflect.Func, reflect.Interface: + case reflect.Pointer, reflect.Slice, reflect.Map, reflect.Func, reflect.Interface: return iv.IsNil() default: return false