Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
address
Browse files Browse the repository at this point in the history
  • Loading branch information
hbjORbj committed Sep 20, 2023
1 parent f2e469d commit a1d84d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions intuita-webview/src/main/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { ToastContainer } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';
import { useTheme } from '../shared/Snippet/useTheme';

const ToastContainerProps = {
const toastContainerProps = {
pauseOnHover: false,
pauseOnFocusLoss: false,
hideProgressBar: false,
Expand Down Expand Up @@ -174,7 +174,7 @@ function App() {
/>
) : null}
<ToastContainer
{...ToastContainerProps}
{...toastContainerProps}
containerId="codemodListToastContainer"
position="bottom-right"
theme={theme === 'vs-light' ? 'light' : 'dark'}
Expand Down Expand Up @@ -209,7 +209,7 @@ function App() {
</VSCodePanelView>
</VSCodePanels>
<ToastContainer
{...ToastContainerProps}
{...toastContainerProps}
containerId="primarySidebarToastContainer"
theme={theme === 'vs-light' ? 'light' : 'dark'}
position="top-right"
Expand Down

0 comments on commit a1d84d5

Please sign in to comment.