Skip to content

Conversation

KesleyDavid
Copy link

Changed id returned in "stock"
This is not a problem that directly affects the core of the application, it is just a "label" update.

   const productId = 2;

   apiMock.onGet(`stock/${productId}`).reply(200, {
      id: 1,
      amount: 1,
   });

To

   const productId = 2;

   apiMock.onGet(`stock/${productId}`).reply(200, {
      id: 2,
      amount: 1,
   });

Changed id returned in "stock"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant