Skip to content

Commit

Permalink
update mantine and install notifications package
Browse files Browse the repository at this point in the history
  • Loading branch information
Hartaithan committed May 7, 2023
1 parent 5dbf188 commit f3632c0
Show file tree
Hide file tree
Showing 3 changed files with 114 additions and 71 deletions.
170 changes: 105 additions & 65 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@mantine/core": "^6.0.2",
"@mantine/form": "^6.0.2",
"@mantine/hooks": "^6.0.2",
"@mantine/next": "^6.0.2",
"@emotion/react": "^11.11.0",
"@emotion/server": "^11.11.0",
"@mantine/core": "^6.0.10",
"@mantine/form": "^6.0.10",
"@mantine/hooks": "^6.0.10",
"@mantine/next": "^6.0.10",
"@mantine/notifications": "^6.0.10",
"@supabase/auth-helpers-nextjs": "^0.6.1",
"@supabase/auth-helpers-react": "^0.3.1",
"@supabase/supabase-js": "^2.21.0",
Expand Down
2 changes: 2 additions & 0 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import {
type NullableProfile,
} from "@/models/AuthModel";
import ProfileProvider from "@/providers/ProfileProvider";
import { Notifications } from "@mantine/notifications";

const API_URL = process.env.NEXT_PUBLIC_API_URL;

Expand Down Expand Up @@ -153,6 +154,7 @@ const App = (props: IAppProps): JSX.Element => {
initialPSNProfile={initialPSNProfile}
>
<MainLayout>
<Notifications />
<Component {...pageProps} />
</MainLayout>
</ProfileProvider>
Expand Down

0 comments on commit f3632c0

Please sign in to comment.