Skip to content

Commit

Permalink
remove unused lint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
ookamiiixd committed Jun 21, 2022
1 parent 88d6105 commit 862adde
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion examples/authenticating.js
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down
1 change: 0 additions & 1 deletion examples/sending-message.js
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 862adde

Please sign in to comment.