EmbeddedStatus: move history.block() into useEffect

This commit is contained in:
Alex Gleason 2022-08-23 10:30:29 -05:00
parent 83103294d3
commit 058746103f
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -26,11 +26,11 @@ const EmbeddedStatus: React.FC<IEmbeddedStatus> = ({ params }) => {
const [loading, setLoading] = useState(true); const [loading, setLoading] = useState(true);
// Prevent navigation for UX and security.
// https://stackoverflow.com/a/71531211
history.block();
useEffect(() => { useEffect(() => {
// Prevent navigation for UX and security.
// https://stackoverflow.com/a/71531211
history.block();
dispatch(fetchStatus(params.statusId)) dispatch(fetchStatus(params.statusId))
.then(() => setLoading(false)) .then(() => setLoading(false))
.catch(() => setLoading(false)); .catch(() => setLoading(false));