diff options
Diffstat (limited to 'src/components/Widgets/RelatedThematics')
| -rw-r--r-- | src/components/Widgets/RelatedThematics/RelatedThematics.tsx | 7 | 
1 files changed, 1 insertions, 6 deletions
| diff --git a/src/components/Widgets/RelatedThematics/RelatedThematics.tsx b/src/components/Widgets/RelatedThematics/RelatedThematics.tsx index e89d887..74325bb 100644 --- a/src/components/Widgets/RelatedThematics/RelatedThematics.tsx +++ b/src/components/Widgets/RelatedThematics/RelatedThematics.tsx @@ -21,6 +21,7 @@ const RelatedThematics = ({ thematics }: { thematics: ThematicPreview[] }) => {    return (      <ExpandableWidget +      expand={true}        title={intl.formatMessage(          {            defaultMessage: @@ -31,12 +32,6 @@ const RelatedThematics = ({ thematics }: { thematics: ThematicPreview[] }) => {        )}        withBorders={true}      > -      <noscript> -        {intl.formatMessage({ -          defaultMessage: 'Javascript is required to load the thematics.', -          description: 'RelatedThematics: noscript tag', -        })} -      </noscript>        <List items={thematicsList} />      </ExpandableWidget>    ); | 
