Skip to content

Commit

Permalink
Fix import path for uuid package changes
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Irwin <[email protected]>
  • Loading branch information
mikesir87 committed Nov 23, 2022
1 parent 615af9f commit 893c0c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/routes/addItem.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const db = require('../persistence');
const uuid = require('uuid/v4');
const {v4 : uuid} = require('uuid');

module.exports = async (req, res) => {
const item = {
Expand Down

0 comments on commit 893c0c1

Please sign in to comment.