Merged in feat/sw-3192-no-user (pull request #2680)
feat(SW-3192): Checks if user exists, otherwise logout and show error * feat(SW-3192): Checks if user exists, otherwise logout and show error
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { UserNotFound } from "@/components/UserNotFound/UserNotFound"
|
||||
|
||||
import type { Metadata } from "next"
|
||||
|
||||
export const metadata: Metadata = {
|
||||
robots: {
|
||||
index: false,
|
||||
follow: false,
|
||||
},
|
||||
}
|
||||
|
||||
export default function UserNotFoundPage() {
|
||||
return <UserNotFound />
|
||||
}
|
||||
Reference in New Issue
Block a user