You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in api.js:56 const randomID = Math.floor(Math.random() * lastID) + 1;, lastID is still at the initial value of 0 so this is equivalent to const randomID = 0 + 1;
The text was updated successfully, but these errors were encountered:
in api.js:56
const randomID = Math.floor(Math.random() * lastID) + 1;
, lastID is still at the initial value of 0 so this is equivalent toconst randomID = 0 + 1;
The text was updated successfully, but these errors were encountered: