fix: fix compiling issues
This commit is contained in:
parent
be5159a4c1
commit
de014db3a5
|
|
@ -328,7 +328,7 @@ function PlanCard({
|
||||||
<Card className={cn("w-full", className)}>
|
<Card className={cn("w-full", className)}>
|
||||||
<CardHeader>
|
<CardHeader>
|
||||||
<CardTitle>
|
<CardTitle>
|
||||||
<Markdown animate>
|
<Markdown animated>
|
||||||
{`### ${
|
{`### ${
|
||||||
plan.title !== undefined && plan.title !== ""
|
plan.title !== undefined && plan.title !== ""
|
||||||
? plan.title
|
? plan.title
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { useInView, useMotionValue, useSpring } from "motion/react";
|
import { useInView, useMotionValue, useSpring } from "motion/react";
|
||||||
import { ComponentPropsWithoutRef, useEffect, useRef } from "react";
|
import { type ComponentPropsWithoutRef, useEffect, useRef } from "react";
|
||||||
|
|
||||||
import { cn } from "~/lib/utils";
|
import { cn } from "~/lib/utils";
|
||||||
|
|
||||||
|
|
@ -56,7 +56,7 @@ export function NumberTicker({
|
||||||
<span
|
<span
|
||||||
ref={ref}
|
ref={ref}
|
||||||
className={cn(
|
className={cn(
|
||||||
"inline-block tabular-nums tracking-wider text-black dark:text-white",
|
"inline-block tracking-wider text-black tabular-nums dark:text-white",
|
||||||
className,
|
className,
|
||||||
)}
|
)}
|
||||||
{...props}
|
{...props}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue