Skip to content

Commit

Permalink
Fix notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
Nadwey committed Aug 11, 2022
1 parent 2cf42f1 commit 1e277ef
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions src/renderer/index.js
Expand Up @@ -8,13 +8,11 @@ import { ModalsProvider } from "@mantine/modals";

const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
<React.StrictMode>
<MantineProvider theme={{ colorScheme: "dark" }}>
<ModalsProvider>
<NotificationsProvider zIndex={998} position="bottom-left">
<App />
</NotificationsProvider>
</ModalsProvider>
</MantineProvider>
</React.StrictMode>
<MantineProvider theme={{ colorScheme: "dark" }}>
<ModalsProvider>
<NotificationsProvider zIndex={998} position="bottom-left">
<App />
</NotificationsProvider>
</ModalsProvider>
</MantineProvider>
);

0 comments on commit 1e277ef

Please sign in to comment.