From d2131c2496516dd1a1b084099d77595728556e7e Mon Sep 17 00:00:00 2001 From: Shivam Gupta Date: Fri, 31 May 2024 16:32:39 +0530 Subject: [PATCH] Fix issue #212: Change toast text color to white in dark mode --- src/components/Toaster.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Toaster.tsx b/src/components/Toaster.tsx index 12ec486f..dead4259 100644 --- a/src/components/Toaster.tsx +++ b/src/components/Toaster.tsx @@ -17,8 +17,8 @@ export function Toaster() { {toasts.map(({ id, title, description, action, ...props }) => (
- {title && {title}} - {description && {description}} + {title && {title}} + {description && {description}}
{action}