diff --git a/internal/runtime/runtime_factory.go b/internal/runtime/runtime_factory.go index aca8ab44..e88213dc 100644 --- a/internal/runtime/runtime_factory.go +++ b/internal/runtime/runtime_factory.go @@ -128,8 +128,8 @@ func supportedModifierTypes(mode string) []string { return []string{"nvidia-hook-remover", "mode"} case "csv": // For CSV mode we support mode and feature-gated modification. - return []string{"nvidia-hook-remover", "mode", "feature-gated"} + return []string{"nvidia-hook-remover", "feature-gated", "mode"} default: - return []string{"mode", "graphics", "feature-gated"} + return []string{"feature-gated", "graphics", "mode"} } }