You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi all, I'm trying to understand how does redirecting work in actions?
I have been trying to redirect to a page in an action but it doesn't work. I have tried using return and throw but the app just doesn't redirect.
Even a simple redirect logic in action doesn't work.
// some-route/page.data.tsimport{redirect}from'@modern-js/runtime/router';exportasyncfunctionaction{throwredirect('/dashboard');// or return redirect('dashboard');}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Hi all, I'm trying to understand how does redirecting work in actions?
I have been trying to redirect to a page in an action but it doesn't work. I have tried using
return and throwbut the app just doesn't redirect.Even a simple redirect logic in action doesn't work.
All reactions