From c3a2945f4f0097cdd15a7270a5f0286ec07dca97 Mon Sep 17 00:00:00 2001 From: kazuki kumo Date: Thu, 5 Dec 2024 09:33:24 +0900 Subject: [PATCH] fix: vocabulary export --- src/routes/(app)/config/chords/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/(app)/config/chords/+page.svelte b/src/routes/(app)/config/chords/+page.svelte index 6582e5cb..f957d343 100644 --- a/src/routes/(app)/config/chords/+page.svelte +++ b/src/routes/(app)/config/chords/+page.svelte @@ -182,7 +182,7 @@ function downloadVocabulary() { const vocabulary = new Set( $chords.map((it) => - "phrase" in it ? plainPhrase(it.phrase, $osLayout).trim() : "", + "phrase" in it ? encodeChord(it, $osLayout).trim() : "", ), ); vocabulary.delete("");