v3/packages/web/src/pages/machinery/new-session.tsx

24 lines
644 B
TypeScript

import * as React from 'react';
import { Title } from '../../utils/metaTitle';
const NewSession = () => {
React.useEffect(() => {
const url = new URL(window.location.href);
const id = url.searchParams.get('session_id');
if (id) {
localStorage.setItem('rp_session_key', id);
const redirectUrl = localStorage.getItem('rp_postauth_redirect');
window.location.href = redirectUrl || '/';
}
});
return (
<>
<Title title="Logging you into Roleypoly..." />
<div>Redirecting you...</div>
</>
);
};
export default NewSession;