Browse Source

Fix conflict (#641)

Christopher Chedeau 5 năm trước cách đây
mục cha
commit
c7eebd42c1
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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;
     })