no space at front of KeyValue default args

This commit is contained in:
mbecker20
2025-08-10 19:28:08 -07:00
parent baef9cc1b1
commit 3fef8644cc

View File

@@ -344,7 +344,7 @@ export const ActionConfig = ({ id }: { id: string }) => {
const default_arguments = (format: Types.FileFormat) => {
switch (format) {
case Types.FileFormat.KeyValue:
return " # ARG_NAME = value\n";
return "# ARG_NAME = value\n";
case Types.FileFormat.Toml:
return '# ARG_NAME = "value"\n';
case Types.FileFormat.Yaml: