From 409331804b0ce8389c06ed82f0e2e194ed4f8ead Mon Sep 17 00:00:00 2001 From: Alan Buscaglia Date: Wed, 22 Oct 2025 12:49:42 +0200 Subject: [PATCH] fix: update data-table-pagination select import path Fixed import path from @/components/shared/shadcn to @/components/ui/select after removing the shadcn folder from shared directory. --- ui/components/ui/table/data-table-pagination.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/components/ui/table/data-table-pagination.tsx b/ui/components/ui/table/data-table-pagination.tsx index 280844cec5..431837e56c 100644 --- a/ui/components/ui/table/data-table-pagination.tsx +++ b/ui/components/ui/table/data-table-pagination.tsx @@ -16,7 +16,7 @@ import { SelectItem, SelectTrigger, SelectValue, -} from "@/components/shared/shadcn"; +} from "@/components/ui/select"; import { getPaginationInfo } from "@/lib"; import { MetaDataProps } from "@/types";