From c8a2e1085f86ffd1650e07af976f1c41c3398fe5 Mon Sep 17 00:00:00 2001 From: abefernan <44572727+abefernan@users.noreply.github.com> Date: Mon, 11 Sep 2023 17:25:07 +0200 Subject: [PATCH] Add toaster root --- pages/_app.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/_app.tsx b/pages/_app.tsx index 368e035..1d811a0 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,3 +1,4 @@ +import { Toaster } from "@/components/ui/toaster"; import ThemeProvider from "@/context/ThemesContext"; import "@/styles/globals.css"; import type { AppProps } from "next/app"; @@ -11,8 +12,7 @@ function MultisigApp({ Component, pageProps }: AppProps) { {showChainSelect && } - {showChainSelect && } - + );