From b40dbc1ea67b78a1f0e27b41507fa22ebc26d751 Mon Sep 17 00:00:00 2001
From: Elue Wisdom <eluewisdom@gmail.com>
Date: Tue, 10 Sep 2024 10:04:57 +0100
Subject: [PATCH] fix (toast.md file): missing comma in toast.success in docs
 after styles object, caused an error when copied and pasted into codebase

---
 docs/docs/toast.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/docs/toast.md b/docs/docs/toast.md
index 3e2b910..db5e51e 100644
--- a/docs/docs/toast.md
+++ b/docs/docs/toast.md
@@ -23,7 +23,7 @@ import { toast } from 'sonner-native';
 
 toast.success('Operation successful!', {
   className: 'bg-green-500',
-  style: { backgroundColor: 'blue' }
+  style: { backgroundColor: 'blue' },
   description: 'Everything worked as expected.',
   duration: 6000,
   icon: <SomeIcon />