chore: after signout intead of redirecting to login page we are navigating to the same page where he logged out (#4507)

This commit is contained in:
guru_sainath 2024-05-17 19:38:48 +05:30 committed by GitHub
parent e3e7c99e11
commit 6f05ec7e74
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 6 deletions

View file

@ -98,6 +98,7 @@ export const UserAvatar: FC = observer(() => {
{csrfToken && (
<form method="POST" action={`${API_BASE_URL}/auth/spaces/sign-out/`} onSubmit={signOut}>
<input type="hidden" name="csrfmiddlewaretoken" value={csrfToken} />
<input type="hidden" name="next_path" value={`${pathName}?${queryParam}`} />
<button
type="submit"
className="flex items-center gap-2 rounded p-2 whitespace-nowrap hover:bg-custom-background-80 text-sm min-w-36 cursor-pointer"