Skip to content

Commit c5e46ac

Browse files
fix lint:prettier
1 parent 61671c1 commit c5e46ac

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/cdktf-cli/src/bin/cmds/ui/synth.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ type SynthOutputConfig = {
2525
const SynthOutput = ({ stacks }: SynthOutputConfig): React.ReactElement => {
2626
return (
2727
<Text>
28-
{stacks?.length ? (
29-
`Generated Terraform code for the stacks: ${stacks.map((s) => s.name).join(", ")}`
30-
) : (
31-
"No stacks found in configuration."
32-
)}
28+
{stacks?.length
29+
? `Generated Terraform code for the stacks: ${stacks
30+
.map((s) => s.name)
31+
.join(", ")}`
32+
: "No stacks found in configuration."}
3333
</Text>
3434
);
3535
};

0 commit comments

Comments
 (0)