fix: recipe params not being replaced all the time (#4207)

This commit is contained in:
Zane
2025-08-22 07:49:49 -07:00
committed by GitHub
parent 180661f26f
commit 6e8aa96d90
3 changed files with 22 additions and 17 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ There may be (but not always) some tools mentioned in the instructions which you
`;
// Helper function to substitute parameters in text
const substituteParameters = (text: string, params: Record<string, string>): string => {
export const substituteParameters = (text: string, params: Record<string, string>): string => {
let substitutedText = text;
for (const key in params) {