Skip to content

Commit

Permalink
fix: segmented button imports wrong path
Browse files Browse the repository at this point in the history
Fixes #461.
  • Loading branch information
hperrin committed Aug 22, 2022
1 parent 1589777 commit 5a765d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/segmented-button/src/Segment.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
>

<script lang="ts">
import { MDCSegmentedButtonSegmentFoundation } from '@material/segmented-button/segment/foundation.js';
import { MDCSegmentedButtonSegmentFoundation } from '@material/segmented-button';
import { onMount, getContext } from 'svelte';
import { get_current_component } from 'svelte/internal';
import type { ActionArray } from '@smui/common/internal';
Expand Down
2 changes: 1 addition & 1 deletion packages/segmented-button/src/SegmentedButton.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</div>

<script lang="ts">
import { MDCSegmentedButtonFoundation } from '@material/segmented-button/segmented-button/foundation.js';
import { MDCSegmentedButtonFoundation } from '@material/segmented-button';
import { onMount, setContext } from 'svelte';
import { writable } from 'svelte/store';
import { get_current_component } from 'svelte/internal';
Expand Down

0 comments on commit 5a765d2

Please sign in to comment.