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 a205ea2 commit 9144c54Copy full SHA for 9144c54
apps/web/components/community/index.tsx
@@ -521,7 +521,8 @@ export function CommunityForum({
521
return (
522
<Image
523
src={
524
- options && options.renderActualFile
+ (options && options.renderActualFile) ||
525
+ media.media?.file?.endsWith(".gif")
526
? media.media.file!
527
: media.media.thumbnail
528
}
packages/components-library/src/hooks/use-medialit.ts
@@ -80,6 +80,7 @@ export function useMediaLit({
80
? JSON.parse(mediaString)
81
: null;
82
if (media) {
83
+ delete media.group;
84
onUploadComplete?.(media);
85
resolve(media);
86
0 commit comments