Explorar o código

Fix conflict (#641)

Christopher Chedeau %!s(int64=5) %!d(string=hai) anos
pai
achega
c7eebd42c1
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/scene/data.ts

+ 1 - 1
src/scene/data.ts

@@ -161,7 +161,7 @@ export async function importFromBackend(id: string | null) {
   const data = await fetch(`${BACKEND_GET}${id}.json`)
     .then(response => {
       if (!response.ok) {
-        window.alert(i18n.t("alerts.importBackendFailed"));
+        window.alert(t("alerts.importBackendFailed"));
       }
       return response;
     })