From 0d50acb0874a9a26f3e29a5cf16c8a6fc8547f19 Mon Sep 17 00:00:00 2001 From: akhisud3195 Date: Mon, 21 Jul 2025 12:49:02 +0530 Subject: [PATCH] Remove redundant imports in create projects page --- .../app/projects/select/components/create-project.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/apps/rowboat/app/projects/select/components/create-project.tsx b/apps/rowboat/app/projects/select/components/create-project.tsx index cd7ed294..21bf280e 100644 --- a/apps/rowboat/app/projects/select/components/create-project.tsx +++ b/apps/rowboat/app/projects/select/components/create-project.tsx @@ -1,20 +1,16 @@ 'use client'; -import { useEffect, useState, useRef } from "react"; -import { createProject, createProjectFromPrompt, createProjectFromWorkflowJson } from "@/app/actions/project_actions"; +import { useEffect, useState } from "react"; +import { createProjectFromPrompt, createProjectFromWorkflowJson } from "@/app/actions/project_actions"; import { useRouter } from 'next/navigation'; import clsx from 'clsx'; -import { starting_copilot_prompts } from "@/app/lib/project_templates"; -import { SectionHeading } from "@/components/ui/section-heading"; import { Textarea } from "@/components/ui/textarea"; -import { Submit } from "./submit-button"; import { Button } from "@/components/ui/button"; import { FolderOpenIcon, InformationCircleIcon } from "@heroicons/react/24/outline"; import { USE_MULTIPLE_PROJECTS } from "@/app/lib/feature_flags"; import { HorizontalDivider } from "@/components/ui/horizontal-divider"; import { Tooltip } from "@heroui/react"; import { BillingUpgradeModal } from "@/components/common/billing-upgrade-modal"; -import { z } from 'zod'; import { Workflow } from '@/app/lib/types/workflow_types'; import { Modal } from '@/components/ui/modal'; import { FileDown, Send } from "lucide-react";