Skip to content

Commit b9f9fc6

Browse files
committed
fixed: build errors
1 parent 87fb73c commit b9f9fc6

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

frontend/src/app/(public)/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ const itemVariants: Variants = {
133133
visible: {
134134
opacity: 1,
135135
y: 0,
136-
transition: { duration: 0.8, ease: [0.16, 1, 0.3, 1] as any }
136+
transition: { duration: 0.8, ease: [0.16, 1, 0.3, 1] }
137137
}
138138
};
139139

@@ -287,7 +287,7 @@ function FeaturesSection() {
287287
viewport={{ once: true, amount: 0.1 }}
288288
className="grid gap-6 sm:grid-cols-2 lg:grid-cols-3"
289289
>
290-
{FEATURES.map((f, i) => (
290+
{FEATURES.map((f) => (
291291
<motion.div
292292
key={f.title}
293293
variants={itemVariants}

frontend/src/components/AuthGuard.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
"use client";
22

3-
import React, { useEffect, useState } from "react";
4-
import { useRouter, usePathname } from "next/navigation";
5-
import { useMerchantHydrated, useMerchantSession } from "@/lib/merchant-store";
3+
import React, { useEffect } from "react";
64

75
export default function AuthGuard({ children }: { children: React.ReactNode }) {
86
useEffect(() => {

0 commit comments

Comments
 (0)