diff --git a/app/components/channel-feed.jsx b/app/components/channel-feed.jsx index a72e156..52d9a72 100644 --- a/app/components/channel-feed.jsx +++ b/app/components/channel-feed.jsx @@ -51,7 +51,11 @@ export default function ChannelFeed(props) { const idx = messages.length - 1; const last = messages[idx]; - if ((!!last.optimistic && user.handle == update.user.handle && last.files.length == update.files.length && (!!last.parent == !!update.parent)) || last.id == update.id) { + if (last.optimistic && user.handle == update.user.handle) { + return; + } + + if (last.id == update.id) { let mp = [...messages];