Merge pull request 'Update the way to get params from the URL' (#136) from fix-localstorage-issue into main
Reviewed-on: #136
This commit is contained in:
commit
db9a6a1b83
@ -1,12 +1,15 @@
|
||||
/* Copyright (C) 2024 Manuel Bustillo*/
|
||||
|
||||
'use client';
|
||||
|
||||
import LoginForm from '@/app/ui/components/login-form';
|
||||
import RegistrationForm from '@/app/ui/components/registration-form';
|
||||
import { useParams } from 'next/navigation'
|
||||
|
||||
export default async function Page({ params }: { params: Promise<{ slug: string }> }) {
|
||||
export default async function Page() {
|
||||
const params = useParams<{ slug: string }>()
|
||||
localStorage.setItem('slug', await params.slug);
|
||||
|
||||
localStorage.setItem('slug', (await params).slug)
|
||||
return (
|
||||
<main className="flex min-h-screen flex-col p-6">
|
||||
<div className="flex flex-row">
|
||||
|
Loading…
x
Reference in New Issue
Block a user