real-boxing

This commit is contained in:
Samandar Turg'unboev
2025-05-22 10:12:44 +05:00
parent d68d75a0cc
commit e7c4cda9a2
8 changed files with 258 additions and 493 deletions

View File

@@ -6,6 +6,7 @@ import useRequest from '@/hooks/useRequest';
import DashboardCreateBoxPage from '@/routes/private/boxes-create/DashboardCreateBox';
import { useParams } from 'next/navigation';
import React from 'react';
import DashboardCreateRealBoxPage from './DashboardCreateRealBox';
type Props = {};
@@ -78,7 +79,7 @@ const DashboardEditRealBoxPage = (props: Props) => {
return (
<>
<DashboardCreateBoxPage initialValues={getOneBox.data} />
<DashboardCreateRealBoxPage initialValues={getOneBox.data} />
</>
);
};