Skip to content

Commit a835c74

Browse files
committed
Fix reference to Backend class in fetch call
1 parent efcaff3 commit a835c74

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Backend.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict'
22
class Backend {
33
static call(module='', data) {
4-
return fetch(new Request(BackendService.getBackend()+'/'+module), {
4+
return fetch(new Request(Backend.getBackend()+'/'+module), {
55
method: 'POST',
66
body: JSON.stringify(data)
77
});

0 commit comments

Comments
 (0)