Fixed a bunch of minor issues with notification workflows and the like

This commit is contained in:
Frikky
2023-09-22 01:01:20 +02:00
parent fc9bc33b30
commit ec36639fa7
7 changed files with 227 additions and 46 deletions
+15
View File
@@ -39,6 +39,9 @@ import AlertTemplate from "./components/AlertTemplate";
import { useAlert, positions, Provider } from "react-alert";
import { isMobile } from "react-device-detect";
import { ToastContainer, toast } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';
import Drift from "react-driftjs";
// Production - backend proxy forwarding in nginx
@@ -561,6 +564,18 @@ const App = (message, props) => {
{includedData}
</Provider>
</BrowserRouter>
<ToastContainer
position="bottom-center"
autoClose={5000}
hideProgressBar={false}
newestOnTop={false}
closeOnClick
rtl={false}
pauseOnFocusLoss
draggable
pauseOnHover
theme="dark"
/>
</CookiesProvider>
</ThemeProvider>
);