We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd4f87c commit 03d8735Copy full SHA for 03d8735
packages/bezier-react/src/components/Toast/Toast.stories.tsx
@@ -94,14 +94,14 @@ function Div({
94
}
95
96
const handleClick = () => {
97
- const curentContent = `${count}. ${content}`
+ const currentContent = `${count}. ${content}`
98
99
- toast.addToast(curentContent, {
+ toast.addToast(currentContent, {
100
preset,
101
appearance,
102
iconName,
103
actionContent,
104
- onClick: () => handleAction(curentContent),
+ onClick: () => handleAction(currentContent),
105
})
106
107
setCount(count + 1)
0 commit comments