Skip to content

Commit

Permalink
Format dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
bryceroethel committed Mar 14, 2024
1 parent 0a64f20 commit 2c36df1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dashboard/src/tabs/Tunables.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
TunableSpeakerXFudge,
TunableSpeakerYFudge,
TunableAmpXFudge,
TunableAmpYFudge
TunableAmpYFudge,
} from "../ntStores";
const onNoteVelocityBlur = (e: FocusEvent) => {
Expand Down Expand Up @@ -35,11 +35,11 @@
};
const onAmpXBlur = (e: FocusEvent) => {
$TunableAmpXFudge = Number(decodeURIComponent((e.target as any)?.innerText).trim());;
$TunableAmpXFudge = Number(decodeURIComponent((e.target as any)?.innerText).trim());
};
const onAmpYBlur = (e: FocusEvent) => {
$TunableAmpYFudge = Number(decodeURIComponent((e.target as any)?.innerText).trim());;
$TunableAmpYFudge = Number(decodeURIComponent((e.target as any)?.innerText).trim());
};
</script>

Expand Down

0 comments on commit 2c36df1

Please sign in to comment.