We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b516b2f commit 828bc63Copy full SHA for 828bc63
app/[locale]/manage/page.tsx
@@ -6,17 +6,17 @@ import { useParams, useRouter } from 'next/navigation';
6
import { Loading } from '@/components/loading';
7
8
const Manage = () => {
9
- const params = useParams();
10
- const router = useRouter();
+ // const params = useParams();
+ // const router = useRouter();
11
12
- useEffect(() => {
13
- // Redirect to the Use Cases page
14
- router.push(`/${params.locale}/manage/usecases`);
15
- }, [router]);
+ // useEffect(() => {
+ // // Redirect to the Use Cases page
+ // router.push(`/${params.locale}/manage/usecases`);
+ // }, [router]);
16
17
return (
18
<div>
19
- <Loading />
+ <p>Welcome to Manage</p>
20
</div> // Optional: You can show a loading message or spinner here
21
);
22
};
0 commit comments