diff --git a/src/app/author/[author]/page.tsx b/src/app/author/[author]/page.tsx
index 83ae5b1..bdcf410 100644
--- a/src/app/author/[author]/page.tsx
+++ b/src/app/author/[author]/page.tsx
@@ -1,7 +1,7 @@
import { authors, affiliations, nationalities } from '../../db/data'
-import { navigate } from '../../actions'
import { Zilla_Slab } from 'next/font/google'
import Link from 'next/link'
+import { Fragment } from 'react'
const zillaSlab = Zilla_Slab({ subsets: ['latin'], weight: ['500'] })
@@ -11,9 +11,8 @@ export default function Page({
params: { author: string }
}>) {
const authorData = authors[params.author]
- console.log(authorData)
+ // console.log(authorData)
if (!authorData) {
- navigate('/404')
return
}
@@ -43,14 +42,14 @@ export default function Page({
const position = a.split('@')[0]
const affiliation = affiliations[a.split('@')[1]].name
return (
- <>
+