Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
zarSou9 committed Oct 20, 2024
1 parent 4e4f390 commit 9eff33e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/components/Button/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const Button = ({
const LinkComponent = !action.startsWith('http')
? Link
: ({to, children, ...props}: {[k: string]: any}) => (
<a href={to} target="_blank" {...props}>
<a href={to} rel="noreferrer" target="_blank" {...props}>
{children}
</a>
)
Expand Down
4 changes: 2 additions & 2 deletions app/components/HowCanIHelp/HelpItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const HelpItem = ({title, children, links, titleFont = 'large-bold'}: HelpItemPr
</div>
<div>
{links?.map((link) => (
<div className="padding-bottom-16">
<LinkCard key={link.title} action={link.action || '#'} {...link} />
<div key={link.title} className="padding-bottom-16">
<LinkCard action={link.action || '#'} {...link} />
</div>
))}
</div>
Expand Down

0 comments on commit 9eff33e

Please sign in to comment.