diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-27 23:17:46 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-27 23:17:46 -0600 |
commit | 1ac28532969429f90fc3b4fe666e58ace807d17a (patch) | |
tree | a67d449b93a4656bf8be902d70142ee3ad1fe1bd /client/src/components/BidsPage.jsx | |
parent | 03183c0ca28abc968d77ed842a387a1da73af61b (diff) |
fix imports
Diffstat (limited to 'client/src/components/BidsPage.jsx')
-rw-r--r-- | client/src/components/BidsPage.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/components/BidsPage.jsx b/client/src/components/BidsPage.jsx index e0c4128..2b97e99 100644 --- a/client/src/components/BidsPage.jsx +++ b/client/src/components/BidsPage.jsx @@ -2,7 +2,7 @@ import React, { useEffect, useState } from 'react'; import { Table, Typography, Spin, Message, Card, Empty, Badge } from '@arco-design/web-react'; import { IconArrowRise, IconArrowFall } from '@arco-design/web-react/icon'; import '@arco-design/web-react/dist/css/arco.css'; -import API_BASE_URL from './config'; +import API_BASE_URL from '../config'; const columns = (bids) => [ { |