axios-observable icon indicating copy to clipboard operation
axios-observable copied to clipboard

README example mistake

Open DJDaveMark opened this issue 1 year ago • 0 comments

In the example, isn't the following:

Axios.get('/user?ID=12345'), {
    params: {
      ID: 12345
    }
  })
  [...]

supposed to be:

Axios.get('/user'), {
    params: {
      ID: 12345
    }
  })
  [...]

DJDaveMark avatar Oct 05 '23 06:10 DJDaveMark