Fix code example variable name

This commit is contained in:
Markel Madina Olalde 2021-06-07 15:30:05 -07:00
Родитель f7f48d23c9
Коммит 852952b9b0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -26,7 +26,7 @@ export function networkRequestor(uri, requestVerb, headers, body) {
const endpoint = 'https://services.odata.org/v4/TripPinServiceRW';
const requestUrl = `${endpoint}${uri}`;
return fetch(url, {
return fetch(requestUrl, {
method: requestVerb,
headers,
body: JSON.stringify(body),