Browse Source

Fix conflict (#641)

Christopher Chedeau 5 years ago
parent
commit
c7eebd42c1
1 changed files with 1 additions and 1 deletions
  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;
     })