Skip to content

Commit

Permalink
♻️ refactor(src): fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ythecombinator committed Jan 6, 2024
1 parent ff40ee1 commit ce3ae30
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion src/components/pages/about/customer-portfolio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { motion } from 'framer-motion';
import Image from 'next/image';
import { FunctionComponent } from 'react';


// ---------------------------------------------------------------------------
// TYPES
// ---------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/posts/all-posts-section-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const AllPostsSectionItem: FunctionComponent<PropsWithChildren<AllPostsSectionIt
<div className="text-sm font-medium leading-6 text-gray-500 dark:text-gray-400 sm:text-base">
<time dateTime={date}>{formatDate(date)}</time>
</div>
<Typography.h2 className="grow text-2xl font-bold leading-8 my-2 tracking-tight">
<Typography.h2 className="my-2 grow text-2xl font-bold leading-8 tracking-tight">
<Link href={`/${Routes.posts}/${slug}`} className="text-gray-900 dark:text-gray-100">
{language === 'pt' ? `🇧🇷 — ${title}` : `${title}`}
</Link>
Expand Down
1 change: 0 additions & 1 deletion src/components/pages/talks/active-talks-section-item.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { FunctionComponent, PropsWithChildren } from 'react';
import { FaMapMarkedAlt } from 'react-icons/fa';


import CardOutlined from 'components/shared/card-outlined';
import Link from 'components/shared/link';
import Tooltip from 'components/shared/tooltip';
Expand Down
1 change: 0 additions & 1 deletion src/components/pages/talks/all-talks-section.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { FunctionComponent, PropsWithChildren } from 'react';


import { isEmpty, reversedIndexOf } from 'utils/array';
import { useSearch } from 'utils/search';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import Image from 'next/image';
import Link from 'next/link';
import { FunctionComponent, PropsWithChildren } from 'react';


import Typography from 'components/shared/typography';

// ---------------------------------------------------------------------------
Expand Down
1 change: 0 additions & 1 deletion src/components/pages/talks/photo-highlights-section.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { FunctionComponent, PropsWithChildren } from 'react';


import SectionContainer from 'components/shared/section-container';
import SectionHeading from 'components/shared/section-heading';

Expand Down
1 change: 0 additions & 1 deletion src/components/shared/ordered-list-item.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { FunctionComponent, PropsWithChildren } from 'react';


import Chip from 'components/shared/chip';
import Link from 'components/shared/link';

Expand Down

0 comments on commit ce3ae30

Please sign in to comment.