From de31d5131e1c8d14a7ce12a4fdcd062a7c113e68 Mon Sep 17 00:00:00 2001 From: sanzaru Date: Sun, 16 Apr 2023 21:27:57 +0200 Subject: [PATCH] Fixed missing optional mark --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 204ffa1..24921f6 100644 --- a/README.md +++ b/README.md @@ -213,4 +213,4 @@ The toast can be configured via an optional SimpleToastOptions object. You can s | **backdrop** | [Color?](https://developer.apple.com/documentation/swiftui/color) | Defines the backdrop color | nil | | **animation** | [Animation](https://developer.apple.com/documentation/swiftui/animation) | Defines the animation type. | .linear | | **modifierType** | [ModifierType](#Demo) | Defines the type of toast animation. Possible values: .slide, .fade | .fade | -| **dismissOnTap** | [Bool](https://developer.apple.com/documentation/swift/bool) | Defines if the toast closes on tap. Possible values: true, false | true | +| **dismissOnTap** | [Bool?](https://developer.apple.com/documentation/swift/bool) | Defines if the toast closes on tap. Possible values: true, false | true |