You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
README says you can use toastService.ShowSuccess("I'm a SUCCESS message with a custom title", "Congratulations!"))
However, there is no such overload method that takes two strings like this (breaking change from version 3.2.2).
Second parameter is now looking for Action<ToastSettings>? settings = null
To Reproduce
Steps to reproduce the behavior:
Create project
Try to pass two strings to toast for "message" and "custom header"
Expected behavior
Allow passing two strings to toast to show message and custom header.
Screenshots
Hosting Model (is this issue happening with a certain hosting model?):
Blazor Server
Blazor WebAssembly
The text was updated successfully, but these errors were encountered:
Custom headings have been removed. There is just the message now. If you want to use a heading as well as a message then you can use the custom component option.
Describe the bug
README says you can use
toastService.ShowSuccess("I'm
a SUCCESS message with a custom title","Congratulations!"))
However, there is no such overload method that takes two strings like this (breaking change from version 3.2.2).
Second parameter is now looking for
Action<ToastSettings>? settings = null
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Allow passing two strings to toast to show message and custom header.
Screenshots
![image](https://user-images.githubusercontent.com/20115963/214137030-36182e8b-9115-4d56-8d33-9ef7c5642539.png)
Hosting Model (is this issue happening with a certain hosting model?):
The text was updated successfully, but these errors were encountered: