Skip to content
This repository has been archived by the owner on Jan 5, 2025. It is now read-only.

Commit

Permalink
Fix imports 02
Browse files Browse the repository at this point in the history
  • Loading branch information
faltawy committed Dec 7, 2023
1 parent 3c6ebbe commit c9dafe1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dashboard/app/(copilot)/_parts/LogoMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import {
} from "@/components/ui/dropdown-menu";
import { ChevronRight } from "lucide-react";
import { useSetAtom } from "jotai";
import { searchModalAtom } from "@/app/_store/atoms/searchModal";
import { Link } from "@/lib/router-events";
import { searchModalAtom } from "@/app/_store/searchModal";

// i'm bad at naming things
export default function LogoMenu() {
Expand Down
2 changes: 1 addition & 1 deletion dashboard/app/(main)/create/copilot/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {
import { Dialog, DialogContent, DialogTrigger } from "@/components/ui/dialog";
import { SwaggerUi } from "./_parts/swagger-form";
import { FormValuesWithId } from "./_parts/swagger-form/types";
import { useConfetti } from "@/app/_store/atoms/confetti";
import { useConfetti } from "@/app/_store/confetti";

function Header() {
const { stepCount, activeStep, goToStep } = useWizard();
Expand Down

0 comments on commit c9dafe1

Please sign in to comment.