The error "Cannot assign to 'current' because it is a read-only property" occurs when we initialize a ref with a null value and don't include null in its type.
To solve the error, include null in the ref's type, e.g. const ref = useRef<string | null>(null).
Popularity
4/10 Helpfulness
1/10
Language typescript
Register to vote on and add code examples. Join our developer community to improve your dev skills and code like a boss!
No Good?
Help us improve our code examples by registering to vote on and add answers. Join our developer community to improve your dev skills and code like a boss!