pl-fe: remove duplicate toaster
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
a1a5df348d
commit
cd3c35fcf9
2 changed files with 1 additions and 8 deletions
|
@ -25,7 +25,7 @@ const MissingDescriptionModal: React.FC<BaseModalProps & MissingDescriptionModal
|
|||
confirmationText={intl.formatMessage(messages.post)}
|
||||
confirmationTheme='danger'
|
||||
cancelText={intl.formatMessage(messages.cancel)}
|
||||
cancelAction={onClose}
|
||||
cancelAction={() => onClose('MISSING_DESCRIPTION')}
|
||||
>
|
||||
<p className='text-gray-600 dark:text-gray-300'>
|
||||
<FormattedMessage id='missing_description_modal.description' defaultMessage='Continue anyway?' />
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
import { QueryClientProvider } from '@tanstack/react-query';
|
||||
import React from 'react';
|
||||
import { HelmetProvider } from 'react-helmet-async';
|
||||
import { Toaster } from 'react-hot-toast';
|
||||
import { Provider } from 'react-redux';
|
||||
|
||||
import { StatProvider } from 'pl-fe/contexts/stat-context';
|
||||
|
@ -40,12 +39,6 @@ const PlFe: React.FC = () => (
|
|||
</StatProvider>
|
||||
</QueryClientProvider>
|
||||
</Provider>
|
||||
<div id='toaster'>
|
||||
<Toaster
|
||||
position='top-right'
|
||||
containerClassName='top-4'
|
||||
/>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue