···477477 const existingItem = this.feed.find(
478478 // HACK: need to find the reposts and trends item, so we have to check for that -prf
479479 item2 =>
480480- item.uri === item2.post.uri &&
480480+ item.post.uri === item2.post.uri &&
481481 item.reason?.$trend === item2.reason?.$trend &&
482482 // @ts-ignore todo
483483 item.reason?.by?.did === item2.reason?.by?.did,