diff options
Diffstat (limited to 'src/containers/Page')
-rw-r--r-- | src/containers/Page/Page.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/containers/Page/Page.tsx b/src/containers/Page/Page.tsx index df27b74..643e6de 100644 --- a/src/containers/Page/Page.tsx +++ b/src/containers/Page/Page.tsx @@ -32,7 +32,7 @@ const Page: React.FC = () => { return ( <SnackbarProvider - maxSnack={3} + maxSnack={isMobile ? 1 : 3} anchorOrigin={{ vertical: isMobile ? 'top' : 'bottom', horizontal: 'right' |