mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
fix: remove unused imports (Link, useRouter)
This commit is contained in:
@@ -3,9 +3,8 @@
|
||||
import { Button } from "@/components/atoms/Button/Button";
|
||||
import { AuthCard } from "@/components/auth/AuthCard";
|
||||
import { Text } from "@/components/atoms/Text/Text";
|
||||
import { Link } from "@/components/atoms/Link/Link";
|
||||
import { useSupabaseStore } from "@/lib/supabase/hooks/useSupabaseStore";
|
||||
import { useParams, useRouter } from "next/navigation";
|
||||
import { useParams } from "next/navigation";
|
||||
import { useCallback, useEffect, useState } from "react";
|
||||
|
||||
/** Platform display names and icons */
|
||||
@@ -29,7 +28,6 @@ type LinkState =
|
||||
|
||||
export default function PlatformLinkPage() {
|
||||
const params = useParams();
|
||||
const router = useRouter();
|
||||
const token = params.token as string;
|
||||
const { user, supabase } = useSupabaseStore();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user