Skip to content

Commit

Permalink
bump offsets and limits
Browse files Browse the repository at this point in the history
  • Loading branch information
tireymorris committed Jul 11, 2024
1 parent 7b1663e commit 299cc39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ app.get("/", async (c) => {
? formatRelativeTime(lastUpdatedDate)
: null;

const firstPageArticles = getCachedArticles();
const firstPageArticles = getCachedArticles(0, 64);

return c.html(
<Layout title="hyperwave" lastUpdated={lastUpdated}>
Expand All @@ -31,8 +31,8 @@ app.get("/", async (c) => {
href="/articles"
trigger="scroll"
debounce="1"
offset="32"
limit="32"
offset="64"
limit="64"
target="#articles"
class="w-full"
data-total="1000"
Expand Down

0 comments on commit 299cc39

Please sign in to comment.