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
I realized when having 3-level nested routes, every time the URL changes the whole page gets re-render every time.
is it expected? or am I missing some configuration?
thank you
The text was updated successfully, but these errors were encountered:
If the URL change impacts the outmost router, yes this is how it's supposed to work.
Do you need 3 nested routers? Or are you able to "flatten" it? Although nested routers are supported, I would consider them as "backup" option and would recommend flattening whenever possible.
when you are at page /dashboard/email and assuming you have 2 panes, the left pane is a list of emails and the right pane is for email content, and here you are already at level 2 of nested routers
when reading emails it feels odd when the browser re-rendered every time I go through emails, here you are at 3 levels of nested routers (/dashboard/email/read/id). the browser flashed a white screen for a very short moment
I realized when having 3-level nested routes, every time the URL changes the whole page gets re-render every time.
is it expected? or am I missing some configuration?
thank you
The text was updated successfully, but these errors were encountered: