mirror of
https://github.com/ivanfioravanti/chatbot-ollama.git
synced 2023-12-01 22:17:38 +03:00
Merge pull request #6 from ryansereno/fix-error-toast
Fixed toast overflow issue
This commit is contained in:
@@ -14,7 +14,14 @@ function App({ Component, pageProps }: AppProps<{}>) {
|
||||
|
||||
return (
|
||||
<div className={inter.className}>
|
||||
<Toaster />
|
||||
<Toaster
|
||||
toastOptions={{
|
||||
style: {
|
||||
maxWidth: 500,
|
||||
wordBreak: 'break-all',
|
||||
},
|
||||
}}
|
||||
/>
|
||||
<QueryClientProvider client={queryClient}>
|
||||
<Component {...pageProps} />
|
||||
</QueryClientProvider>
|
||||
|
||||
Reference in New Issue
Block a user