update public folder,

This commit is contained in:
louiscklaw
2025-06-08 19:08:41 +08:00
parent bc35e25616
commit fca048074e
150 changed files with 1648 additions and 6697 deletions

View File

@@ -51,7 +51,7 @@ import {
import AboutPopover from '../../components/AboutPopover';
import { getOrders } from '../../api/getOrders';
import Loading from '../../components/Loading';
import paths from '../../paths';
import PATHS from '../../PATHS';
interface OwnProps {}
@@ -178,15 +178,15 @@ const OrderList: React.FC<SpeakerListProps> = ({ fetchOrderResult, speakerSessio
}
function handleShowOrderDetail(order_id: string) {
router.push(paths.getOrderDetail(order_id));
router.push(PATHS.getOrderDetail(order_id));
}
function handleNotImplemented() {
router.push(paths.NOT_IMPLEMENTED);
router.push(PATHS.NOT_IMPLEMENTED);
}
function handleBookmarksClick() {
router.push(paths.FAVOURITES_LIST);
router.push(PATHS.FAVOURITES_LIST);
}
if (status != 200)