aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/ui/Feeds.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2024-02-09 19:10:01 +0300
committerGravatar Vitaly Takmazov2024-02-09 19:13:28 +0300
commit9e01a8d3c3daf3257f29ad63b3836dfa89c6200b (patch)
treefc785536ffd05a2232da5222f55e9a5268f99f32 /vnext/src/ui/Feeds.js
parente2674c3b27174e408264b84f50bf86a13e2d3824 (diff)
vnext: authorize on backend
Diffstat (limited to 'vnext/src/ui/Feeds.js')
-rw-r--r--vnext/src/ui/Feeds.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/ui/Feeds.js b/vnext/src/ui/Feeds.js
index 16b6b534..0cebdce6 100644
--- a/vnext/src/ui/Feeds.js
+++ b/vnext/src/ui/Feeds.js
@@ -35,7 +35,7 @@ function RequireAuth({ children }) {
// trying to go to when they were redirected. This allows us to send them
// along to that page after they login, which is a nicer user experience
// than dropping them off on the home page.
- return <Navigate to="/login" state={{ from: location }} />
+ return <Navigate to={`/login?retpath=${window.location.href}`} state={{ from: location }} />
}
return children