We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ff9132 commit 1e36a8dCopy full SHA for 1e36a8d
packages/common/src/components/mdx_editor.tsx
@@ -143,7 +143,7 @@ const ImageSelector: GroupOptions["children"] = Suspense.with({ fallback: <Circu
143
</Typography>
144
<Grid>
145
{data
146
- .filter((item) => item.mimetype.startsWith("image/"))
+ .filter((item) => item.mimetype?.startsWith("image/"))
147
.map((item) => ({ ...item, file: item.file.split("?")[0] })) // Remove query parameters if any
148
.map((item) => {
149
const selected = widgetState.selectedImageUrl === item.file;
0 commit comments