mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
Fix conflict (#641)
This commit is contained in:
parent
fc341c3763
commit
c7eebd42c1
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ export async function importFromBackend(id: string | null) {
|
||||||
const data = await fetch(`${BACKEND_GET}${id}.json`)
|
const data = await fetch(`${BACKEND_GET}${id}.json`)
|
||||||
.then(response => {
|
.then(response => {
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
window.alert(i18n.t("alerts.importBackendFailed"));
|
window.alert(t("alerts.importBackendFailed"));
|
||||||
}
|
}
|
||||||
return response;
|
return response;
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Reference in a new issue