From 85b94b60b88911f3fd08adc9cb934e89539338b9 Mon Sep 17 00:00:00 2001 From: Tobbe Lundberg Date: Tue, 29 Oct 2024 00:04:26 +0100 Subject: [PATCH] update test snapshots --- .../utils/__snapshots__/transform-import.test.ts.snap | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/shadcn/test/utils/__snapshots__/transform-import.test.ts.snap b/packages/shadcn/test/utils/__snapshots__/transform-import.test.ts.snap index 6e1c2d033c6..61277c5f127 100644 --- a/packages/shadcn/test/utils/__snapshots__/transform-import.test.ts.snap +++ b/packages/shadcn/test/utils/__snapshots__/transform-import.test.ts.snap @@ -18,7 +18,7 @@ import { Foo } from "bar" import { Label} from "ui/label" import { Box } from "~/src/components/box" - import { cn, foo, bar } from "~/lib/utils" + import { cn, foo, bar } from "~/lib" import { bar } from "~/lib/utils/bar" " `; @@ -30,7 +30,7 @@ import { Foo } from "bar" import { Label} from "ui/label" import { Box } from "~/src/components/box" - import { cn } from "~/lib/utils" + import { cn } from "~/src/utils" import { bar } from "~/lib/utils/bar" " `; @@ -42,7 +42,7 @@ import { Foo } from "bar" import { Label} from "ui/label" import { Box } from "~/src/components/box" - import { cn } from "~/lib/utils" + import { cn } from "~/src/utils" import { bar } from "~/lib/utils/bar" " `; @@ -54,7 +54,7 @@ import { Foo } from "bar" import { Label} from "ui/label" import { Box } from "~/src/components/box" - import { cn } from "~/lib/utils" + import { cn } from "~/src/utils" import { bar } from "~/lib/utils/bar" " `;