diff --git a/public/tunes/202012.msq b/public/tunes/202012.xml similarity index 100% rename from public/tunes/202012.msq rename to public/tunes/202012.xml diff --git a/public/tunes/202103.msq b/public/tunes/202103.xml similarity index 100% rename from public/tunes/202103.msq rename to public/tunes/202103.xml diff --git a/src/components/TopBar.tsx b/src/components/TopBar.tsx index 1ea8323..655cb24 100644 --- a/src/components/TopBar.tsx +++ b/src/components/TopBar.tsx @@ -87,7 +87,7 @@ const TopBar = () => { }> }> }> - + Download diff --git a/src/utils/api.ts b/src/utils/api.ts index 2aabae9..e5d43af 100644 --- a/src/utils/api.ts +++ b/src/utils/api.ts @@ -14,7 +14,7 @@ export const loadAll = async () => { const json: ConfigType = await fetch(`./tunes/${version}.json`) .then((response) => response.json()); - const tune = await fetch(`./tunes/${version}.msq`) + const tune = await fetch(`./tunes/${version}.xml`) .then((response) => response.text()); const xml = (new DOMParser()).parseFromString(tune, 'text/xml');