From 23735ef91020b9bc7370451a6db25edb5b1abfae Mon Sep 17 00:00:00 2001 From: Bret Mogilefsky Date: Sat, 20 Jun 2026 08:20:43 -0700 Subject: [PATCH] fix: 'feed[dB]ack' -> 'fee[dB]ack' in v3 guitar tone source labels Both the v3 index.html and live-guitar-tone-source.js had an extra 'd' in the brand name ('feed[dB]ack' instead of 'fee[dB]ack') in the guitar tone source selector labels and help text. --- static/v3/index.html | 6 +++--- static/v3/live-guitar-tone-source.js | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/static/v3/index.html b/static/v3/index.html index 535d11e..c0647e0 100644 --- a/static/v3/index.html +++ b/static/v3/index.html @@ -435,11 +435,11 @@ -

Choose External/Spark if your guitar tone comes from hardware like Spark LIVE. feed[dB]ack will still score your playing but won’t warn that no internal amp tone is loaded.

+

Choose External/Spark if your guitar tone comes from hardware like Spark LIVE. fee[dB]ack will still score your playing but won’t warn that no internal amp tone is loaded.

@@ -736,7 +736,7 @@ Guitar tone diff --git a/static/v3/live-guitar-tone-source.js b/static/v3/live-guitar-tone-source.js index 90a499c..dd2c9ac 100644 --- a/static/v3/live-guitar-tone-source.js +++ b/static/v3/live-guitar-tone-source.js @@ -19,14 +19,14 @@ const DEFAULT = SOURCES.INTERNAL; const LABELS = Object.freeze({ - [SOURCES.INTERNAL]: 'feed[dB]ack internal tone', + [SOURCES.INTERNAL]: 'fee[dB]ack internal tone', [SOURCES.EXTERNAL_HARDWARE]: 'External amp / hardware pedalboard', [SOURCES.SPARK_CONTROL_X]: 'Spark LIVE + Spark Control X', }); const HELP_TEXT = 'Choose External/Spark if your guitar tone comes from hardware like Spark LIVE. ' - + 'feed[dB]ack will still score your playing but won\u2019t warn that no internal amp tone is loaded.'; + + 'fee[dB]ack will still score your playing but won\u2019t warn that no internal amp tone is loaded.'; function normalize(value) { if (value === SOURCES.EXTERNAL_HARDWARE || value === SOURCES.SPARK_CONTROL_X) return value;