From 0c14692b3c367039f61fadf0caf951f786e21f1d Mon Sep 17 00:00:00 2001 From: Lindi Xu Date: Mon, 17 Aug 2026 22:33:11 +0800 Subject: [PATCH] fix: use declared class name utility --- .../shadcn-ui/src/components/examples/json-skeleton/demo.tsx | 2 +- frontend/shadcn-ui/src/components/ui/typography.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/shadcn-ui/src/components/examples/json-skeleton/demo.tsx b/frontend/shadcn-ui/src/components/examples/json-skeleton/demo.tsx index 4474a19..8becc85 100644 --- a/frontend/shadcn-ui/src/components/examples/json-skeleton/demo.tsx +++ b/frontend/shadcn-ui/src/components/examples/json-skeleton/demo.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import cn from 'classnames'; +import { cn } from '../../../lib/utils'; import { Box, Skeleton } from '../../ui'; import exampleJson from './example-json.json'; diff --git a/frontend/shadcn-ui/src/components/ui/typography.tsx b/frontend/shadcn-ui/src/components/ui/typography.tsx index ea6bc44..ded5c60 100644 --- a/frontend/shadcn-ui/src/components/ui/typography.tsx +++ b/frontend/shadcn-ui/src/components/ui/typography.tsx @@ -1,5 +1,5 @@ import React, { ReactNode } from 'react'; -import cn from 'classnames'; +import { cn } from '../../lib/utils'; interface TypographyProps { variant?: