Skip to content

Commit 411e100

Browse files
committed
make small change to trigger build
1 parent b209ad8 commit 411e100

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

apps/converter-frontend/pages/authors.tsx

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ import useSWR from 'swr'
66
import { PublicationData } from '../components/publications-list/publication-data'
77
import { VStack } from '../components/stack/stack'
88
import qs from 'querystring'
9-
import Link from 'next/link'
10-
119
// export interface AuthorPageProps {
1210
// //
1311
// }
@@ -67,14 +65,13 @@ export function AuthAuthorPage(props: { query?: Record<string, any> }) {
6765
pub={item}
6866
items={['title', 'subtitle', 'authors']}
6967
/>
70-
<Link
68+
<a
7169
href={`https://submit.trialanderror.org/index.php/jote/workflow/index/${item.id}/1#publication`}
72-
passHref={true}
70+
style={{ marginTop: 20 }}
71+
target="_blank"
7372
>
74-
<a style={{ marginTop: 20 }} target="_blank">
75-
OJS Link
76-
</a>
77-
</Link>
73+
OJS Link
74+
</a>
7875
</Paper>
7976
))}
8077

0 commit comments

Comments
 (0)