Skip to content

Commit bd012a7

Browse files
committed
update fixture for new behavior
1 parent 3928c9e commit bd012a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ts-transformers/test/fixtures/jsx-expressions/map-single-capture-no-name.expected.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default recipe(true as const satisfies __ctHelpers.JSONSchema, (_state: a
77
]);
88
return {
99
[UI]: (<div>
10-
{__ctHelpers.derive(people, ({ people }) => people.length > 0 && (<ul>
10+
{__ctHelpers.derive({ people: people }, ({ people }) => people.length > 0 && (<ul>
1111
{people.map((person) => (<li key={person.id}>{person.name}</li>))}
1212
</ul>))}
1313
</div>),

0 commit comments

Comments
 (0)