Skip to content

Commit 480d380

Browse files
authored
Merge pull request #2516 from sumitdaga/issue2091
attempting to fix #2091 Tested: if there is some notification already shown when a new notification is shown it replaces the previous one.
2 parents 5a9d3d4 + ed2633b commit 480d380

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Layout/Layout.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const Layout = (props) => {
2323
return (
2424
<div>
2525
{ props.topbar }
26-
<Alert stack={{limit: 3, spacing: 30}} position="bottom-left" html timeout={4000} offset={50} effect="stackslide" />
26+
<Alert stack={{limit: 1, spacing: 30}} position="bottom-left" html timeout={4000} offset={50} effect="stackslide" />
2727
<div className={cn('main-wrapper')} data-route={window.location.pathname.replace(/\//g, '__')} id="wrapper-main">
2828
{ props.content }
2929
</div>

0 commit comments

Comments
 (0)