Skip to content

Commit 9b7d50d

Browse files
committedApr 29, 2021
pages/test: fix 404 and broken links
1 parent 6d2f731 commit 9b7d50d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎example/pages/test.mjs

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ export const View = state => [
1818
ul([
1919
li(Link({ text: 'redirect link', to: 'https://magic.github.io/core' })),
2020

21-
li(Link({ to: 'broken link', text: 'https://expect-error' })),
21+
li(Link({ text: 'broken link', to: 'https://expect-error' })),
2222
li(
2323
Link({
24-
to: '404 link',
25-
text: 'https://en.wikipedia.org/hMdYfVaKY4btraQcgD0me6RRBDnugbpJ4FLpgJgeB7',
24+
text: '404 link',
25+
to: 'https://en.wikipedia.org/hMdYfVaKY4btraQcgD0me6RRBDnugbpJ4FLpgJgeB7',
2626
}),
2727
),
2828
li(Img({ alt: 'Broken Image Link', src: 'https://broken-image-link' })),

0 commit comments

Comments
 (0)
Please sign in to comment.