I have a simple project and in this project I am trying to return data through the id number, and I used “routeParams”, but I had a problem that the “routeParams” is of a string type and I want to convert it to a number, how can I do that?
const routeParams = useParams();
useDeepCompareEffect(() => {
dispatch(getReceipt(routeParams.orderId));
}, [dispatch, routeParams.orderId]);