diff --git a/src/app/templates/About/links-group-item.tsx b/src/app/templates/About/links-group-item.tsx index c350997f1..2a6af9d2b 100644 --- a/src/app/templates/About/links-group-item.tsx +++ b/src/app/templates/About/links-group-item.tsx @@ -1,7 +1,7 @@ import React, { memo } from 'react'; import { Anchor, IconBase } from 'app/atoms'; -import { SettingsCell } from 'app/atoms/SettingsCell'; +import { SettingsCellSingle } from 'app/atoms/SettingsCell'; import { ReactComponent as OutLinkIcon } from 'app/icons/base/outLink.svg'; import { TID, t } from 'lib/i18n'; @@ -21,7 +21,7 @@ export const LinksGroupItem = memo(({ item, isLast }) => { const { Icon, key, link, testID } = item; return ( - } cellName={t(key)} @@ -30,6 +30,6 @@ export const LinksGroupItem = memo(({ item, isLast }) => { testID={testID} > - + ); });