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
Using redirect doesn't work in alpha 30, for example:
importReact,{useEffect}from"react";import{redirect}from"framework";exportdefaultfunctionPage(){useEffect(()=>{redirect("/somepage");},[]);return<p> Should not be seen because redirected </p>;}