refactor: remove duplicate utils/utils.ts, consolidate into utils.ts

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 13:31:35 +01:00
parent f764e27d59
commit b71d7dc559
4 changed files with 3 additions and 22 deletions

View File

@@ -3,7 +3,7 @@
-->
<script lang="ts">
import { cn } from "$lib/utils/utils";
import { cn } from "$lib/utils";
import UploadIcon from "@lucide/svelte/icons/upload";
import { displaySize } from ".";
import { useId } from "bits-ui";

View File

@@ -3,7 +3,7 @@
-->
<script lang="ts">
import { cn } from "$lib/utils/utils";
import { cn } from "$lib/utils";
import type { TagsInputProps } from "./types";
import TagsInputTag from "./tags-input-tag.svelte";
import { untrack } from "svelte";