fix: shouldShowTimeoutProgress typo (#4961)

This commit is contained in:
աӄա 2025-03-08 23:25:04 +08:00 committed by GitHub
parent 695b0c8c65
commit 4e5a86eb9d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ export default function App() {
title: "Toast Title",
description: "Toast Description",
timeout: 3000,
shouldShowTimeoutProgess: true,
shouldShowTimeoutProgress: true,
});
}}
>

View File

@ -214,7 +214,7 @@ const PromiseToastTemplate = (args: ToastProps) => {
description: "Toast Displayed Successfully",
promise: new Promise((resolve) => setTimeout(resolve, 3000)),
timeout: 3000,
shouldShowTimeoutProgess: false,
shouldShowTimeoutProgress: false,
...args,
});
}}