mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-28 12:58:48 +00:00
remove default success class from toast
This commit is contained in:
parent
4ccf9bf093
commit
7f01d4bbc6
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ const ToastItem = ({ title, message, dataset, onSelect, onClose, ...props }) =>
|
|||
}
|
||||
}, [dataset, onClose]);
|
||||
return (
|
||||
<Button className={classnames(styles['toast-item-container'], styles['success'], styles[type])} tabIndex={-1} onClick={toastOnClick}>
|
||||
<Button className={classnames(styles['toast-item-container'], styles[type])} tabIndex={-1} onClick={toastOnClick}>
|
||||
{
|
||||
typeof icon === 'string' && icon.length > 0 ?
|
||||
<div className={styles['icon-container']}>
|
||||
|
|
|
|||
Loading…
Reference in a new issue