Skip to content

Commit 98d127a

Browse files
SanderandTkDodo
andauthoredJul 18, 2024··
docs: Update paginated-queries.md (#7759)
Co-authored-by: Dominik Dorfmeister <office@dorfmeister.cc>
1 parent f1c4ce7 commit 98d127a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎docs/framework/react/guides/paginated-queries.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function Todos() {
6868
disabled={page === 0}
6969
>
7070
Previous Page
71-
</button>{' '}
71+
</button>
7272
<button
7373
onClick={() => {
7474
if (!isPlaceholderData && data.hasMore) {
@@ -80,7 +80,7 @@ function Todos() {
8080
>
8181
Next Page
8282
</button>
83-
{isFetching ? <span> Loading...</span> : null}{' '}
83+
{isFetching ? <span> Loading...</span> : null}
8484
</div>
8585
)
8686
}

0 commit comments

Comments
 (0)
Please sign in to comment.