Skip to content

Commit

Permalink
fix: clean up imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanhopperlowe committed Oct 15, 2024
1 parent 6a04e1e commit e1cee61
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions ui/admin/app/components/oauth-apps/CreateOauthApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,22 @@ import { OAuthAppSpec, OAuthAppType } from "~/lib/model/oauthApps";
import { OauthAppService } from "~/lib/service/api/oauthAppService";

import { Button } from "~/components/ui/button";
import { Dialog, DialogContent, DialogTitle } from "~/components/ui/dialog";
import { useAsync } from "~/hooks/useAsync";
import { useDisclosure } from "~/hooks/useDisclosure";

import {
Command,
CommandGroup,
CommandInput,
CommandItem,
CommandList,
} from "../ui/command";
import { Popover, PopoverContent, PopoverTrigger } from "../ui/popover";
} from "~/components/ui/command";
import { Dialog, DialogContent, DialogTitle } from "~/components/ui/dialog";
import {
Popover,
PopoverContent,
PopoverTrigger,
} from "~/components/ui/popover";
import { useAsync } from "~/hooks/useAsync";
import { useDisclosure } from "~/hooks/useDisclosure";

import { OAuthAppForm } from "./OAuthAppForm";

type CreateOauthAppProps = {
Expand Down

0 comments on commit e1cee61

Please sign in to comment.