Merge branch 'AW-69-additional-purchases' into 'develop'

AW-69-additional-purchases

See merge request witapp/aura-webapp!121
This commit is contained in:
Daniil Chemerkin 2024-05-06 19:48:45 +00:00
commit b7c35f824d
2 changed files with 3 additions and 2 deletions

View File

@ -228,7 +228,8 @@ function App(): JSX.Element {
return dispatch(actions.status.update("lead"));
}
})();
}, [dispatch, api, token, user]);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [dispatch, api, token]);
useEffect(() => {
async function getApng() {

View File

@ -13,7 +13,7 @@ function PaymentSuccessPage(): JSX.Element {
const dispatch = useDispatch();
const handleNext = () => {
dispatch(actions.status.update("subscribed"));
navigate(routes.client.home());
navigate(routes.client.addReport());
};
return (