Skip to content

Commit

Permalink
fix: type problem
Browse files Browse the repository at this point in the history
  • Loading branch information
amir-abxn committed Jan 15, 2025
1 parent 92fe465 commit 699c4cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/landing/animated-headline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export function AnimatedHeadline() {
<PageSection className="md:py-8">
<div className="w-fit flex gap-3 mx-auto py-8 font-mono font-bold text-sm md:text-xl lg:text-3xl xl:text-4xl">
FRKN:{" "}
{["F", "R", "K", "N"].map((key, index) => {
{(["F", "R", "K", "N"] as letters[]).map((key, index) => {
return (
<motion.span
key={`${currentWords[key]}-${index}`}
Expand Down

0 comments on commit 699c4cd

Please sign in to comment.