diff --git a/src/lib/utils.ts b/src/lib/utils.ts index eed36199..b52af2ba 100644 --- a/src/lib/utils.ts +++ b/src/lib/utils.ts @@ -45,7 +45,7 @@ export const notify = { style: { background: "#D1E7DD", }, - className: "alert-success text-dark", + className: "alert-success", ...options, }); return true; @@ -55,7 +55,7 @@ export const notify = { style: { background: "#F8D7DA", }, - className: "alert-danger text-dark", + className: "alert-danger", ...options, }); return false; @@ -65,7 +65,7 @@ export const notify = { style: { background: "#FFF3CD", }, - className: "alert-warning text-dark", + className: "alert-warning", ...options, }); return false; diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx index d1ed0fe6..fa470ec6 100644 --- a/src/pages/_app.tsx +++ b/src/pages/_app.tsx @@ -54,7 +54,6 @@ function App({ Component, pageProps }: AppProps) {