diff --git a/app/soapbox/features/status/components/card.tsx b/app/soapbox/features/status/components/card.tsx index ea09afe57..9aeeda38a 100644 --- a/app/soapbox/features/status/components/card.tsx +++ b/app/soapbox/features/status/components/card.tsx @@ -2,6 +2,7 @@ import classnames from 'classnames'; import { List as ImmutableList } from 'immutable'; import React, { useState, useEffect } from 'react'; +import Blurhash from 'soapbox/components/blurhash'; import Icon from 'soapbox/components/icon'; import { HStack } from 'soapbox/components/ui'; import { normalizeAttachment } from 'soapbox/normalizers'; @@ -161,6 +162,13 @@ const Card: React.FC = ({ let embed: React.ReactNode = ''; + const canvas = ( + + ); + const thumbnail = (
= ({ embed = (
+ {canvas} {thumbnail}
@@ -226,6 +235,7 @@ const Card: React.FC = ({ } else if (card.image) { embed = (
+ {canvas} {thumbnail}
);