From c7eebd42c1d7186664a801af5640a97363874a2c Mon Sep 17 00:00:00 2001 From: Christopher Chedeau Date: Fri, 31 Jan 2020 21:51:35 +0000 Subject: [PATCH] Fix conflict (#641) --- src/scene/data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scene/data.ts b/src/scene/data.ts index 11e1cea3ed..7fa6a8dfae 100644 --- a/src/scene/data.ts +++ b/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; })