Skip to content

Commit

Permalink
fix after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-tsx committed Nov 6, 2024
1 parent 4e762da commit 6500eb9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/templates/About/links-group-item.tsx
Original file line number Diff line number Diff line change
@@ -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';

Expand All @@ -21,7 +21,7 @@ export const LinksGroupItem = memo<LinksGroupItemProps>(({ item, isLast }) => {
const { Icon, key, link, testID } = item;

return (
<SettingsCell
<SettingsCellSingle
isLast={isLast}
cellIcon={Icon && <Icon />}
cellName={t(key)}
Expand All @@ -30,6 +30,6 @@ export const LinksGroupItem = memo<LinksGroupItemProps>(({ item, isLast }) => {
testID={testID}
>
<IconBase size={16} className="text-primary" Icon={OutLinkIcon} />
</SettingsCell>
</SettingsCellSingle>
);
});

0 comments on commit 6500eb9

Please sign in to comment.