Skip to content

Commit

Permalink
fix: remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
harjibbolar26 committed Jul 30, 2024
1 parent dbb5bd1 commit a2ed419
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
5 changes: 0 additions & 5 deletions src/components/layouts/navbar/mobile-navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import Link from "next/link";
import { useEffect, useState } from "react";

import UserCard from "~/components/card/user-card";
// import { useUser } from "~/hooks/user/use-user";
import { cn } from "~/lib/utils";
import { NAV_LINKS } from "./links";

Expand All @@ -16,12 +15,8 @@ export default function MobileNav() {
const [scope, animate] = useAnimate();
const { data: session } = useSession();

// the stagger effect
const staggerList = stagger(0.1, { startDelay: 0.25 });

// create the animations that will be applied
// whenever the open state is toggled

useEffect(() => {
animate(
"ul",
Expand Down
2 changes: 0 additions & 2 deletions src/config/auth.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@ export default {
if (account && account.provider !== "google") {
return { ...token, ...response.data };
}
/* eslint-disable-next-line no-console */
console.log("Google Auth Response:", response.data);

return { ...token, ...user };
},
Expand Down

0 comments on commit a2ed419

Please sign in to comment.