From 0812bfaca4651e79eb48e82ade6650952b6a12fa Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Sat, 9 Sep 2023 16:47:19 -0700 Subject: [PATCH] chore: removes unused component --- assets/modules/oruga.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/assets/modules/oruga.ts b/assets/modules/oruga.ts index e30ab9e0..6653ea16 100644 --- a/assets/modules/oruga.ts +++ b/assets/modules/oruga.ts @@ -1,5 +1,5 @@ import { type App } from "vue"; -import { Autocomplete, Button, Dropdown, Switch, Skeleton, Field, Table, Modal, Config } from "@oruga-ui/oruga-next"; +import { Autocomplete, Button, Dropdown, Switch, Skeleton, Field, Modal, Config } from "@oruga-ui/oruga-next"; import { bulmaConfig } from "@oruga-ui/theme-bulma"; export const install = (app: App) => { @@ -11,6 +11,5 @@ export const install = (app: App) => { .use(Modal) .use(Field) .use(Skeleton) - .use(Table) .use(Config, bulmaConfig); };