diff --git a/examples/authenticating.js b/examples/authenticating.js index 1705d8b7..ba333350 100644 --- a/examples/authenticating.js +++ b/examples/authenticating.js @@ -3,7 +3,6 @@ const SESSION_ID = 'john' const sendRequest = async () => { // Here we are using fetch API to send the request - // eslint-disable-next-line no-undef const response = await fetch(`${BASE_URI}sessions/add`, { method: 'POST', body: JSON.stringify({ diff --git a/examples/sending-message.js b/examples/sending-message.js index 116aa849..60f47825 100644 --- a/examples/sending-message.js +++ b/examples/sending-message.js @@ -3,7 +3,6 @@ const SESSION_ID = 'john' const sendMessage = async (endpoint, data) => { // Here we are using fetch API to send the request - // eslint-disable-next-line no-undef const response = await fetch(`${BASE_URI}${endpoint}?id=${SESSION_ID}`, { method: 'POST', body: JSON.stringify(data),