Skip to content

Commit 79f6be5

Browse files
authored
Sort props
Signed-off-by: GitHub <noreply@github.com>
1 parent 3e23d9f commit 79f6be5

3 files changed

Lines changed: 3 additions & 7 deletions

File tree

src/Components/HotbarHint.luau

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ local React = require("../../react")
66

77
export type Props = {
88
hintKey: Enum.KeyCode,
9-
order: number?,
109
forceVisible: boolean?,
11-
10+
order: number?,
1211
children: any?,
1312
}
1413

src/Components/SearchBar.luau

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ local React = require("../../react")
44

55
export type Props = {
66
size: UDim2?,
7-
87
children: any?,
98
}
109

src/Components/Slot.luau

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,15 @@ local React = require("../../react")
77
local ToolTip = require("./ToolTip")
88

99
export type Props = {
10-
toolName: string?,
1110
slotNumber: number?,
1211
toolImage: string?,
12+
toolName: string?,
1313
tooltipText: string?,
14-
15-
forceVisible: boolean?,
1614
equipped: boolean?,
15+
forceVisible: boolean?,
1716
unlocked: boolean?,
1817
order: number?,
1918
onActivated: (() -> ())?,
20-
2119
children: any?,
2220
}
2321

0 commit comments

Comments
 (0)