Better Error reporting for document store operations. (#4350)

* Better Error reporting for document store operations.

* Update packages/ui/src/ErrorBoundary.jsx

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update index.ts

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Henry Heng <henryheng@flowiseai.com>
This commit is contained in:
Vinod Kiran
2025-04-27 10:53:58 +05:30
committed by GitHub
parent fc6eea7653
commit ddeb59169b
+2 -2
View File
@@ -16,7 +16,7 @@ const ErrorBoundary = ({ error }) => {
<Stack flexDirection='column' sx={{ alignItems: 'center', gap: 3 }}> <Stack flexDirection='column' sx={{ alignItems: 'center', gap: 3 }}>
<Stack flexDirection='column' sx={{ alignItems: 'center', gap: 1 }}> <Stack flexDirection='column' sx={{ alignItems: 'center', gap: 1 }}>
<Typography variant='h2'>Oh snap!</Typography> <Typography variant='h2'>Oh snap!</Typography>
<Typography variant='h3'>The following error occured when loading this page.</Typography> <Typography variant='h3'>The following error occurred when loading this page.</Typography>
</Stack> </Stack>
<Card variant='outlined'> <Card variant='outlined'>
<Box sx={{ position: 'relative', px: 2, py: 3 }}> <Box sx={{ position: 'relative', px: 2, py: 3 }}>
@@ -27,7 +27,7 @@ const ErrorBoundary = ({ error }) => {
> >
<IconCopy /> <IconCopy />
</IconButton> </IconButton>
<pre style={{ margin: 0 }}> <pre style={{ margin: 0, overflowWrap: 'break-word', whiteSpace: 'pre-wrap', textAlign: 'center' }}>
<code>{`Status: ${error.response.status}`}</code> <code>{`Status: ${error.response.status}`}</code>
<br /> <br />
<code>{error.response.data.message}</code> <code>{error.response.data.message}</code>