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.
This commit is contained in:
Bret Mogilefsky
2026-06-20 08:20:43 -07:00
parent 21997f4b5c
commit 23735ef910
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -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;