fix(admin-ui): Undefined vars in admin (#5162)

* fix(admin-ui): Undefined vars in admin

* Create short-hairs-fold.md
This commit is contained in:
Oli Juhl
2023-09-20 17:03:47 +02:00
committed by GitHub
parent 54531e38bc
commit ef2a12e451
5 changed files with 12 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ import { useDebounce } from "../../../hooks/use-debounce"
import { useState } from "react"
type Props = {
onItemSelect: (item: itemType) => void
onItemSelect: (item: DecoratedInventoryItemDTO) => void
clearOnSelect?: boolean
filters?: AdminGetInventoryItemsParams
}