diff --git a/apps/opik-frontend/src/components/pages/HomePage/GetStartedSection.tsx b/apps/opik-frontend/src/components/pages/HomePage/GetStartedSection.tsx index bee9ac9b9f..989002c27d 100644 --- a/apps/opik-frontend/src/components/pages/HomePage/GetStartedSection.tsx +++ b/apps/opik-frontend/src/components/pages/HomePage/GetStartedSection.tsx @@ -1,7 +1,5 @@ import React, { useState } from "react"; -import { FlaskConical, InspectionPanel, MousePointer, X } from "lucide-react"; -import useLocalStorageState from "use-local-storage-state"; -import { Button } from "@/components/ui/button"; +import { FlaskConical, InspectionPanel, MousePointer } from "lucide-react"; import useAppStore from "@/store/AppStore"; import { buildDocsUrl } from "@/lib/utils"; import AddExperimentDialog from "../ExperimentsShared/AddExperimentDialog"; @@ -9,19 +7,11 @@ import { Link } from "@tanstack/react-router"; const GetStartedSection = () => { const workspaceName = useAppStore((state) => state.activeWorkspaceName); - const [hide, setHide] = useLocalStorageState( - "home-get-started-section", - { - defaultValue: false, - }, - ); const [isNewExperimentDialogOpened, setIsNewExperimentDialogOpened] = useState(false); const openNewExperimentDialog = () => setIsNewExperimentDialogOpened(true); - if (hide) return null; - return (
@@ -30,15 +20,6 @@ const GetStartedSection = () => { Get started
-
- -