File tree Expand file tree Collapse file tree 3 files changed +6
-15
lines changed Expand file tree Collapse file tree 3 files changed +6
-15
lines changed Original file line number Diff line number Diff line change @@ -41,12 +41,6 @@ export default function ReadmeBadges() {
41
41
alt = "Contributors"
42
42
/>
43
43
</ a >
44
- < a href = "https://github.com/badges/shields/pulse" >
45
- < img
46
- src = "https://img.shields.io/github/commit-activity/m/system-ui/theme-ui"
47
- alt = "Activity"
48
- />
49
- </ a >
50
44
< a href = "https://badgen.net/bundlephobia/minzip/theme-ui" >
51
45
< img src = "https://badgen.net/bundlephobia/minzip/theme-ui" alt = "Size" />
52
46
</ a >
@@ -68,12 +62,6 @@ export default function ReadmeBadges() {
68
62
alt = "Join our Discord community"
69
63
/>
70
64
</ a >
71
- < a href = "https://github.com/system-ui/theme-ui/actions?query=workflow%3ACI" >
72
- < img
73
- src = "https://github.com/system-ui/theme-ui/workflows/CI/badge.svg?branch=stable"
74
- alt = "Build Status"
75
- />
76
- </ a >
77
65
< a href = "https://dashboard.cypress.io/projects/fmfid1/runs" >
78
66
< img
79
67
src = "https://img.shields.io/endpoint?url=https://dashboard.cypress.io/badge/simple/fmfid1/stable& logo = cypress "
Original file line number Diff line number Diff line change @@ -341,14 +341,16 @@ export const Pagination = ({
341
341
display : 'flex' ,
342
342
} }
343
343
>
344
- { hasPagination && previous && React . isValidElement ( previous ) && (
344
+ { hasPagination && previous && (
345
345
< PaginationLink href = { previous [ 1 ] } label = "Previous:" >
346
346
{ previous [ 0 ] }
347
347
</ PaginationLink >
348
348
) }
349
349
< div sx = { { mx : 'auto' } } />
350
- { hasPagination && next && React . isValidElement ( next ) && (
351
- < PaginationLink label = "Next:" > { next [ 0 ] } </ PaginationLink >
350
+ { hasPagination && next && (
351
+ < PaginationLink href = { next [ 1 ] } label = "Next:" >
352
+ { next [ 0 ] }
353
+ </ PaginationLink >
352
354
) }
353
355
</ div >
354
356
)
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ describe('docs navigation', () => {
22
22
'Migrating' ,
23
23
'Edit the page on GitHub' ,
24
24
'Previous:Getting Started with Gatsby' ,
25
+ 'Next:The sx Prop' ,
25
26
]
26
27
27
28
for ( const s of expectedLinkTexts ) {
You can’t perform that action at this time.
0 commit comments