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 4312004
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/app/templates/About/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { memo } from 'react';

import { VerticalLines } from 'app/atoms/Lines';
import { Logo } from 'app/atoms/Logo';
import { SettingsCell } from 'app/atoms/SettingsCell';
import { SettingsCellSingle } from 'app/atoms/SettingsCell';
import { SettingsCellGroup } from 'app/atoms/SettingsCellGroup';
import { ReactComponent as DiscordIcon } from 'app/icons/monochrome/discord.svg';
import { ReactComponent as KnowledgeBaseIcon } from 'app/icons/monochrome/knowledge-base.svg';
Expand Down Expand Up @@ -93,7 +93,7 @@ export const About = memo(() => {
return (
<div className="flex flex-col gap-4">
<SettingsCellGroup>
<SettingsCell
<SettingsCellSingle
Component="div"
isLast
className="p-4 gap-3"
Expand Down
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 4312004

Please sign in to comment.