Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Jan 8, 2025
1 parent 26a8d60 commit 5804c70
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions app/components/SettingsSlider.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
<script context="module" lang="ts">
import PopoverBackgroundView from '~/components/common/PopoverBackgroundView.svelte';
</script>

<svelte:options accessors />
<script lang="ts">
export let icon: string = null;
export let title: string = null;
Expand All @@ -13,8 +10,8 @@
export let formatter = null;
function onValueChange(event) {
value = event.value;
if (onChange) {
value = event.value;
onChange(event.value);
}
}
Expand Down

0 comments on commit 5804c70

Please sign in to comment.