emblor
emblor copied to clipboard
[bug]: Unused ref
Describe the bug
const TagInput = React.forwardRef<HTMLInputElement, TagInputProps>((props, ref) => { Nowhere do you use the ref in your code const inputRef = React.useRef<HTMLInputElement>(null); Here you could use the references from the props
How to reproduce
from the description
Link to reproduction
https://github.com/JaleelB/emblor/blob/main/packages/emblor/src/tag/tag-input.tsx
Additional information
No response