diff --git a/web/src/components/ChatArea.tsx b/web/src/components/ChatArea.tsx index 9dd1f58..18134ff 100644 --- a/web/src/components/ChatArea.tsx +++ b/web/src/components/ChatArea.tsx @@ -245,7 +245,7 @@ export function ChatArea() { const handleGifSelect = async (gif: Gif) => { if (!activeChannelId) return; - const content = `![${gif.title || "GIF"}](${gif.url})`; + const content = `![${gif.title || "GIF"}](${gif.images.fixed_height.url})`; try { await sendMessage(activeChannelId, content); setShowGifPicker(false);