Hello !
My router dosnt redirect to /board/${data.id} as intended on my form-popover file. It should show me a 404page cause i didnt created the page for now witch is normal. Ive tried alot of things to debug but i could not find the solution for several days now. I tried console logging the link, and when its pasted it shows that404 page . I also tried downgrading the version of next but dosnt changed. I am realy lost there.
my repo : https://github.com/SHOOTSTV/trello-clone
my prisma schema aswel :
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "mysql"
url = env("DATABASE_URL")
relationMode = "prisma"
}
model Board {
id String @id @default(uuid())
orgId String
title String
imageId String
imageThumbUrl String @db.Text
imageFullUrl String @db.Text
imageUserName String @db.Text
imageLinkHtml String @db.Text
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}