Skip to content

Commit

Permalink
Code quality cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Brayden committed Oct 20, 2024
1 parent 1adabab commit b75ebc0
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/components/gui/save-doc-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
import { Button } from "../ui/button";
import { useDatabaseDriver } from "@/context/driver-provider";
import { useCallback, useState } from "react";
import { LucideFolderGit, LucideLoader, LucideSave } from "lucide-react";
import { LucideFolderGit, LucideLoader } from "lucide-react";
import {
DropdownMenu,
DropdownMenuContent,
Expand Down
1 change: 0 additions & 1 deletion src/components/gui/tabs/query-tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { useCallback, useMemo, useRef, useState } from "react";
import {
LucideGrid,
LucideMessageSquareWarning,
LucidePencilRuler,
LucidePlay,
} from "lucide-react";
import SqlEditor from "@/components/gui/sql-editor";
Expand Down
1 change: 0 additions & 1 deletion src/components/ui/resizable.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"use client";

import { DragHandleDots2Icon } from "@radix-ui/react-icons";
import * as ResizablePrimitive from "react-resizable-panels";

import { cn } from "@/lib/utils";
Expand Down
7 changes: 1 addition & 6 deletions src/messages/open-tab.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
import type { WindowTabItemProps } from "@/components/gui/windows-tab";
import { MessageChannelName, TAB_PREFIX_SAVED_QUERY } from "../const";
import type { Dispatch, SetStateAction } from "react";
import {
LucideTable,
LucideTableProperties,
LucideUser,
LucideCog,
} from "lucide-react";
import { LucideTableProperties, LucideUser, LucideCog } from "lucide-react";
import QueryWindow from "@/components/gui/tabs/query-tab";
import SchemaEditorTab from "@/components/gui/tabs/schema-editor-tab";
import TableDataWindow from "@/components/gui/tabs/table-data-tab";
Expand Down

0 comments on commit b75ebc0

Please sign in to comment.