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
Import statements for uuid are deprecated, causing this console error:
Deep requiring like `const uuidv4 = require('uuid/v4');` is deprecated as of [email protected].
Please require the top-level module when using the Node.js CommonJS module or use
ECMAScript Modules when bundling for the browser. See
https://github.com/uuidjs/uuid#deep-requires-now-deprecated for more information.
The text was updated successfully, but these errors were encountered:
Updating import uuid4 from 'uuid/v4' -> import { v4 as uuid4 } from 'uuid' across a few files solves the problem. I've got a branch that does this I can push up if you want to grant me permission @nikmolnar .
Import statements for
uuid
are deprecated, causing this console error:The text was updated successfully, but these errors were encountered: