Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Claire Olmstead committed Oct 2, 2024
1 parent 6a56026 commit 8fb826f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/lib/atoms/Select.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import { Root, Trigger, Value, Content, Item, Label } from '$lib/shadcnComponents/ui/select';
import { Root, Trigger, Value, Content, Item, Label } from '../shadcnComponents/ui/select';
export let label: string;
export let description: string | undefined;
Expand Down
10 changes: 5 additions & 5 deletions src/lib/shadcnComponents/ui/select/index.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Select as SelectPrimitive } from "bits-ui";

import Label from "./select-label.svelte.js";
import Item from "./select-item.svelte.js";
import Content from "./select-content.svelte.js";
import Trigger from "./select-trigger.svelte.js";
import Separator from "./select-separator.svelte.js";
import Label from "./select-label.svelte";
import Item from "./select-item.svelte";
import Content from "./select-content.svelte";
import Trigger from "./select-trigger.svelte";
import Separator from "./select-separator.svelte";

const Root = SelectPrimitive.Root;
const Group = SelectPrimitive.Group;
Expand Down

0 comments on commit 8fb826f

Please sign in to comment.