Skip to content

Commit

Permalink
feat: lower 'autoClose' to 1.2 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor-anderson committed May 12, 2023
1 parent b958882 commit 7f63867
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/ToastContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import "react-toastify/dist/ReactToastify.css";
export const ToastContainer = () => (
<ReactToastContainer
limit={1} // excess msgs are queued
position={"top-center"}
autoClose={3000}
position="top-center"
autoClose={1200}
hideProgressBar={false}
newestOnTop={true}
closeOnClick={false}
rtl={false}
pauseOnFocusLoss={true}
draggable={false}
pauseOnHover={true}
pauseOnHover={false}
/>
);

0 comments on commit 7f63867

Please sign in to comment.