Skip to content

Commit 6500eb9

Browse files
committed
fix after merge
1 parent 4e762da commit 6500eb9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/app/templates/About/links-group-item.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { memo } from 'react';
22

33
import { Anchor, IconBase } from 'app/atoms';
4-
import { SettingsCell } from 'app/atoms/SettingsCell';
4+
import { SettingsCellSingle } from 'app/atoms/SettingsCell';
55
import { ReactComponent as OutLinkIcon } from 'app/icons/base/outLink.svg';
66
import { TID, t } from 'lib/i18n';
77

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

2323
return (
24-
<SettingsCell
24+
<SettingsCellSingle
2525
isLast={isLast}
2626
cellIcon={Icon && <Icon />}
2727
cellName={t(key)}
@@ -30,6 +30,6 @@ export const LinksGroupItem = memo<LinksGroupItemProps>(({ item, isLast }) => {
3030
testID={testID}
3131
>
3232
<IconBase size={16} className="text-primary" Icon={OutLinkIcon} />
33-
</SettingsCell>
33+
</SettingsCellSingle>
3434
);
3535
});

0 commit comments

Comments
 (0)