We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f6a76c commit cf71f16Copy full SHA for cf71f16
src/components/manga/MangaDetails.tsx
@@ -233,7 +233,7 @@ export default function MangaDetails(props: IProps) {
233
</IconButton>
234
</div>
235
{ /* eslint-disable-next-line react/jsx-no-target-blank */ }
236
- <a href={manga.url} target="_blank">
+ <a href={manga.realUrl} target="_blank">
237
<IconButton>
238
<PublicIcon />
239
<span>Open Site</span>
src/typings.d.ts
@@ -52,6 +52,8 @@ interface IManga {
52
inLibrary: boolean
53
source: ISource
54
55
+ realUrl: string
56
+
57
freshData: boolean
58
}
59
0 commit comments