mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-11 00:02:38 +02:00
Remove redundant imports in create projects page
This commit is contained in:
parent
86c2562c72
commit
0d50acb087
1 changed files with 2 additions and 6 deletions
|
|
@ -1,20 +1,16 @@
|
||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { useEffect, useState, useRef } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { createProject, createProjectFromPrompt, createProjectFromWorkflowJson } from "@/app/actions/project_actions";
|
import { createProjectFromPrompt, createProjectFromWorkflowJson } from "@/app/actions/project_actions";
|
||||||
import { useRouter } from 'next/navigation';
|
import { useRouter } from 'next/navigation';
|
||||||
import clsx from 'clsx';
|
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 { Textarea } from "@/components/ui/textarea";
|
||||||
import { Submit } from "./submit-button";
|
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
import { FolderOpenIcon, InformationCircleIcon } from "@heroicons/react/24/outline";
|
import { FolderOpenIcon, InformationCircleIcon } from "@heroicons/react/24/outline";
|
||||||
import { USE_MULTIPLE_PROJECTS } from "@/app/lib/feature_flags";
|
import { USE_MULTIPLE_PROJECTS } from "@/app/lib/feature_flags";
|
||||||
import { HorizontalDivider } from "@/components/ui/horizontal-divider";
|
import { HorizontalDivider } from "@/components/ui/horizontal-divider";
|
||||||
import { Tooltip } from "@heroui/react";
|
import { Tooltip } from "@heroui/react";
|
||||||
import { BillingUpgradeModal } from "@/components/common/billing-upgrade-modal";
|
import { BillingUpgradeModal } from "@/components/common/billing-upgrade-modal";
|
||||||
import { z } from 'zod';
|
|
||||||
import { Workflow } from '@/app/lib/types/workflow_types';
|
import { Workflow } from '@/app/lib/types/workflow_types';
|
||||||
import { Modal } from '@/components/ui/modal';
|
import { Modal } from '@/components/ui/modal';
|
||||||
import { FileDown, Send } from "lucide-react";
|
import { FileDown, Send } from "lucide-react";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue