Skip to content

Commit 0930ebe

Browse files
committed
Better variable name
1 parent 049630e commit 0930ebe

File tree

1 file changed

+2
-2
lines changed
  • packages/gui/src/components/schemas

1 file changed

+2
-2
lines changed

packages/gui/src/components/schemas/grid.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const trackSize = joinSchemas([
2929
functionSchema('fit-content', lengthPercentage()),
3030
])
3131

32-
const trackCount = joinSchemas([
32+
const repeatTrackCount = joinSchemas([
3333
integer({ defaultValue: 3 }),
3434
keyword(['auto-fit', 'auto-fill']),
3535
])
@@ -41,7 +41,7 @@ const trackList = joinSchemas(
4141
'repeat',
4242
objectSchema({
4343
fields: {
44-
count: trackCount,
44+
count: repeatTrackCount,
4545
trackList: listSchema({ itemSchema: trackSize, separator: ' ' }),
4646
},
4747
separator: ', ',

0 commit comments

Comments
 (0)