Skip to content

Commit

Permalink
fix: Prop class name
Browse files Browse the repository at this point in the history
  • Loading branch information
0Xero7 committed Oct 15, 2024
1 parent 28b284e commit 6336662
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/ActivityCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ import { cn } from "@/lib/server/utils";
import HyperText from "./magicui/hyper-text";
import Image from "next/image";

interface AchievementCardProps {
interface ActivityCardProps {
LeftAligned: boolean;
Title: string;
Subtitle: string;
Description: string;
ImageSrc: string;
}

export default function ActivityCard({...props}: AchievementCardProps) {
export default function ActivityCard({...props}: ActivityCardProps) {
return (
<div
className={cn(
Expand Down

0 comments on commit 6336662

Please sign in to comment.