Skip to content

Commit

Permalink
Add limit and autoclose faster
Browse files Browse the repository at this point in the history
  • Loading branch information
aviupadhyayula committed Feb 21, 2024
1 parent b27f485 commit fe7bac9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion frontend/renderPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,12 @@ function renderPage<T>(
</AuthCheckContext.Provider>
</OptionsContext.Provider>
<ToastStyle>
<ToastContainer position="bottom-center" hideProgressBar={true} />
<ToastContainer
limit={3}
position="bottom-center"
autoClose={2000}
hideProgressBar={true}
/>
</ToastStyle>
<GlobalStyle />
</>
Expand Down

0 comments on commit fe7bac9

Please sign in to comment.