Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
zardoy committed Jan 28, 2025
1 parent ff36f75 commit a442acf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/react/Singleplayer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export default ({
if (worldName) {
worldRefs.current[worldName]?.focus()
}
}, [selectedRow, worldData?.[selectedRow]?.name])
}, [selectedRow, worldData?.[selectedRow as any]?.name])

const onRowSelectHandler = (name: string, index: number) => {
onRowSelect?.(name, index)
Expand Down

0 comments on commit a442acf

Please sign in to comment.