Skip to content

Commit

Permalink
chore(cac): fix eslint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
flamestro committed Feb 9, 2024
1 parent 58e6820 commit 660b6da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/compose-as-code/src/compiler/compilerUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const compileKeyValuePair = (
options?: { noQuotes?: boolean }
) => {
let result = '';
let quote = options?.noQuotes ? '' : '"';
const quote = options?.noQuotes ? '' : '"';
result += indent(indentationDepth);
result += `${key}: ${value ? `${quote}${value}${quote}` : ''}\n`;
return result;
Expand Down

0 comments on commit 660b6da

Please sign in to comment.