From c2075e2a8b940ec3f8a36af130a15e573a9350fb Mon Sep 17 00:00:00 2001 From: Brendan Dash Date: Tue, 18 Nov 2025 00:06:04 +0800 Subject: [PATCH] fix: typo (#8800) --- packages/shadcn/src/utils/updaters/update-files.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/shadcn/src/utils/updaters/update-files.ts b/packages/shadcn/src/utils/updaters/update-files.ts index 0e468e2e52..0fc777e7f5 100644 --- a/packages/shadcn/src/utils/updaters/update-files.ts +++ b/packages/shadcn/src/utils/updaters/update-files.ts @@ -716,7 +716,7 @@ export function toAliasedImport( // if noExt is empty (i.e. file was exactly at the root), we import the root let suffix = noExt === "" ? "" : `/${noExt}` - // Rremove /src from suffix. + // Remove /src from suffix. // Alias will handle this. suffix = suffix.replace("/src", "")