aboutsummaryrefslogtreecommitdiff
path: root/client/src/components/SubmitBidPage.jsx
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2025-04-27 23:17:46 -0600
committerNavan Chauhan <navanchauhan@gmail.com>2025-04-27 23:17:46 -0600
commit1ac28532969429f90fc3b4fe666e58ace807d17a (patch)
treea67d449b93a4656bf8be902d70142ee3ad1fe1bd /client/src/components/SubmitBidPage.jsx
parent03183c0ca28abc968d77ed842a387a1da73af61b (diff)
fix imports
Diffstat (limited to 'client/src/components/SubmitBidPage.jsx')
-rw-r--r--client/src/components/SubmitBidPage.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/components/SubmitBidPage.jsx b/client/src/components/SubmitBidPage.jsx
index 7737c20..bed92be 100644
--- a/client/src/components/SubmitBidPage.jsx
+++ b/client/src/components/SubmitBidPage.jsx
@@ -4,8 +4,8 @@ import '@arco-design/web-react/dist/css/arco.css';
import dayjs from 'dayjs';
import utc from 'dayjs/plugin/utc';
import timezone from 'dayjs/plugin/timezone';
-import API_BASE_URL from './config';
-import { MarketContext, MARKET_FULL_NAMES } from './App';
+import API_BASE_URL from '../config';
+import { MarketContext, MARKET_FULL_NAMES } from '../App';
dayjs.extend(utc);
dayjs.extend(timezone);