17 lines
414 B
TypeScript
17 lines
414 B
TypeScript
import { useEffect } from "react";
|
|
import { useNavigate } from "react-router-dom";
|
|
|
|
import { setNavigate } from "../api/auth-redirect";
|
|
|
|
/** Bridges React Router's navigate to the non-React 401 handler. Renders nothing. */
|
|
export function NavigationBridge() {
|
|
const navigate = useNavigate();
|
|
|
|
useEffect(() => {
|
|
setNavigate(navigate);
|
|
return () => setNavigate(null);
|
|
}, [navigate]);
|
|
|
|
return null;
|
|
}
|