I have a layout as such.
app/
(auth)
_layout.tsx
index.tsx
sign-in.tsx
_layout.tsx
dashboard.tsx
index.tsx
from within sign-in.tsx i call router.replace(“/”) when i get an auth token, this navigates me to the index inside (auth) not the root index. So how can I navigate to the root index from within (auth)/signin.tsx?
found the open issue https://github.com/expo/router/issues/365