diff --git a/app/soapbox/features/status/components/detailed-status.tsx b/app/soapbox/features/status/components/detailed-status.tsx index 423e8065d..07dd95fb5 100644 --- a/app/soapbox/features/status/components/detailed-status.tsx +++ b/app/soapbox/features/status/components/detailed-status.tsx @@ -102,26 +102,27 @@ const DetailedStatus: React.FC = ({ return (
- { - canTranslate && ( -
- { - !actualStatus.translations.get(locale) ? ( - - ) : ( - - - - - ) - } - -
- ) - } +
+ { + canTranslate ? ( + !actualStatus.translations.get(locale) ? ( + + ) : ( + + + + + ) + ) : ( + + ) + } + +
+