aboutsummaryrefslogtreecommitdiff
path: root/components/notificationsArea.tsx
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-03-21 15:56:14 +0100
committerlonkaars <l.leblansch@gmail.com>2021-03-21 15:56:14 +0100
commit20030d1bf21ff0ce9a0a95885abe88b79a0b4d04 (patch)
treef88021f36931ed150efe76d3954640298b8512e6 /components/notificationsArea.tsx
parent8a3e72edfaee62052ba2eb740775f6bb88af9ae1 (diff)
new toast design in code
Diffstat (limited to 'components/notificationsArea.tsx')
-rw-r--r--components/notificationsArea.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/components/notificationsArea.tsx b/components/notificationsArea.tsx
index 0a243e1..b427941 100644
--- a/components/notificationsArea.tsx
+++ b/components/notificationsArea.tsx
@@ -25,7 +25,9 @@ export function NotificationsArea(props: {
useEffect(() => {
if(messages > previousMessages) {
- toast("Je hebt nieuwe meldingen!", "confirmation", <NotificationsActiveOutlinedIcon style={{ fontSize: 32 }}/>);
+ toast({ message: "Je hebt nieuwe meldingen!",
+ type: "confirmation",
+ icon: <NotificationsActiveOutlinedIcon/>});
}
setPreviousMessages(messages);