diff --git a/package-lock.json b/package-lock.json index 4ed03353..b9abc635 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3701,10 +3701,6 @@ "dev": true, "license": "MIT" }, - "node_modules/@types/uuid": { - "version": "10.0.0", - "license": "MIT" - }, "node_modules/@types/wrap-ansi": { "version": "3.0.0", "dev": true, @@ -14074,17 +14070,6 @@ "version": "1.0.2", "license": "MIT" }, - "node_modules/uuid": { - "version": "10.0.0", - "funding": [ - "https://github.com/sponsors/broofa", - "https://github.com/sponsors/ctavan" - ], - "license": "MIT", - "bin": { - "uuid": "dist/bin/uuid" - } - }, "node_modules/validate-npm-package-license": { "version": "3.0.4", "dev": true, @@ -14552,7 +14537,6 @@ "@types/negotiator": "^0.6.3", "@types/react": "^18.2.19", "@types/react-dom": "^18.2.7", - "@types/uuid": "^10.0.0", "autoprefixer": "^10.4.20", "base32-encode": "^2.0.0", "client-only": "^0.0.1", @@ -14571,7 +14555,6 @@ "server-only": "^0.0.1", "superjson": "^2.0.0", "tailwind-merge": "^2.0.0", - "uuid": "^10.0.0", "zod": "^3.23.8" }, "devDependencies": { diff --git a/packages/cli-app/package.json b/packages/cli-app/package.json index 0837e5e3..171846de 100644 --- a/packages/cli-app/package.json +++ b/packages/cli-app/package.json @@ -50,7 +50,6 @@ "@types/negotiator": "^0.6.3", "@types/react": "^18.2.19", "@types/react-dom": "^18.2.7", - "@types/uuid": "^10.0.0", "autoprefixer": "^10.4.20", "base32-encode": "^2.0.0", "client-only": "^0.0.1", @@ -69,7 +68,6 @@ "server-only": "^0.0.1", "superjson": "^2.0.0", "tailwind-merge": "^2.0.0", - "uuid": "^10.0.0", "zod": "^3.23.8" } } \ No newline at end of file diff --git a/packages/cli-app/src/app/plugins/plugin.tsx b/packages/cli-app/src/app/plugins/plugin.tsx index 2695d999..bd21f75b 100644 --- a/packages/cli-app/src/app/plugins/plugin.tsx +++ b/packages/cli-app/src/app/plugins/plugin.tsx @@ -13,7 +13,7 @@ import { Button } from "@nextui-org/button" import { Spinner } from "@nextui-org/spinner" import { Tooltip } from "@nextui-org/tooltip" -import { PluginsContentDr } from "./content.dr" +import { PluginDr } from "./plugin.dr" type TPlugins = RouterOutputs["plugins"]["getPlugins"] type TPlugin = TPlugins["plugins"][number] @@ -26,7 +26,7 @@ export default function Plugin({ }: { plugin: TPlugin ssrConfiguration: RouterOutputs["configuration"]["getConfiguration"] - dictionary: TDictionary + dictionary: TDictionary isLoading?: boolean }) { const utils = trpc.useUtils()