Skip to content

Commit

Permalink
fix: show entries older than 24 months (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
cempehlivan authored Sep 28, 2024
1 parent f1714c7 commit 902845c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/evolu-queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,9 +269,9 @@ export const generateOccurrences = (
) => {
const occurences = [];
const MAX_OCCURENCES = {
year: 1,
month: 24,
week: 52,
year: 20,
month: 240,
week: 1248,
} as const;

const frequency = recurringConfig.frequency;
Expand Down

0 comments on commit 902845c

Please sign in to comment.