fix eslint, lint compliance

This commit is contained in:
Reid 2023-08-11 19:27:00 -07:00
parent b84a3b22dc
commit e7acbd72fa
5 changed files with 7 additions and 15 deletions

View file

@ -10,12 +10,9 @@ interface hotbarProps extends Roact.JsxInstanceProperties<Frame> {
}
const hotbar: Hooks.FC<hotbarProps> = (props, hooks) => {
const {} = hooks
const {} = props
const spreadableProps = { ...props } as Partial<hotbarProps>
const { world, clientState } = useWorldContext(hooks)
const { clientState } = useWorldContext(hooks)
const keycodes: Enum.KeyCode[] = [
Enum.KeyCode.One,