Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
inaseem committed Feb 3, 2024
1 parent 6c9628e commit 75ba011
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Article.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { timeAgo } from '../utils';

interface ArticaleProps {
interface ArticleProps {
title: string;
link?: string;
upvotesCount: number;
Expand All @@ -20,7 +20,7 @@ const Article = ({
link,
onClick,
isComment,
}: ArticaleProps) => {
}: ArticleProps) => {
return (
<div
className="item cursor-pointer py-4 px-5 border bg-opacity-25 border-transparent transition hover:border-primary-500 dark:hover:bg-primary-600 dark:hover:bg-opacity-[0.1] border-b group"
Expand Down

0 comments on commit 75ba011

Please sign in to comment.