Skip to content

Commit b7bee32

Browse files
committed
mapping: use empty placeholder to match apitest
see #78207
1 parent b15355c commit b7bee32

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

fas_config/custom_metadata.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ try {
2121
// 2. Get the recipe_configs object and extract the custom values
2222
const recipeParams = info.recipe_params || {};
2323

24-
const customDE = recipeParams['custom_de'] ?? '<missing custom_de>'; // fallback if not found
25-
const customEN = recipeParams['custom_en'] ?? '<missing custom_en>';
26-
const extra = recipeParams['extra'] ?? '<missing extra>';
24+
const customDE = recipeParams['custom_de'] ?? '';
25+
const customEN = recipeParams['custom_en'] ?? '';
26+
const extra = recipeParams['extra'] ?? '';
2727

2828
// 3. Read the template JSON (request_only_metadata.json)
2929
let template = fs.readFileSync(inputJsonPath, 'utf8');

0 commit comments

Comments
 (0)