From 0e93e67814188319d4c2049567b35934e3d3045a Mon Sep 17 00:00:00 2001 From: Ryan Yang Date: Thu, 6 Jan 2022 09:52:28 -0800 Subject: [PATCH] fixed bug after code refactoring where import was wrong --- package-lock.json | 4 ++-- package.json | 2 +- .../components/PreviousLocationList/PreviousLocationList.jsx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2bb69a5..c36cf00 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "boba-watch", - "version": "3.1.10", + "version": "3.1.11", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "boba-watch", - "version": "3.1.10", + "version": "3.1.11", "dependencies": { "@date-io/date-fns": "^1.3.13", "@material-ui/core": "^4.11.0", diff --git a/package.json b/package.json index 8684509..fa8097e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "boba-watch", - "version": "3.1.10", + "version": "3.1.11", "private": true, "dependencies": { "@date-io/date-fns": "^1.3.13", diff --git a/src/app/pages/Add/components/LocationInput/components/PreviousLocationList/PreviousLocationList.jsx b/src/app/pages/Add/components/LocationInput/components/PreviousLocationList/PreviousLocationList.jsx index 9550a36..f022193 100644 --- a/src/app/pages/Add/components/LocationInput/components/PreviousLocationList/PreviousLocationList.jsx +++ b/src/app/pages/Add/components/LocationInput/components/PreviousLocationList/PreviousLocationList.jsx @@ -1,6 +1,6 @@ import { memo } from 'react'; import useDrinks from '../../../../../../controller/hooks/useDrinks.js'; -import { useDrinkByLocation } from '../../../../../Dashboard/DesktopDashboard/components/VisitedMap/controller/hooks'; +import { useDrinkByLocation } from '../../../../../../components/Map/controllers'; import { Card } from '../../../../../../components'; import cn from './PreviousLocationList.module.scss'; import { useTranslation } from 'react-i18next';