feat: more work on mcp server integration

This commit is contained in:
2026-02-28 12:36:13 +01:00
parent e71e478776
commit 6c22e69805
36 changed files with 1420 additions and 635 deletions

View File

@@ -169,7 +169,7 @@ export function createPreviewBackedGenerationRouteRenderer(params: {
const match = candidates.find((candidate) => {
const createdAt = candidate.createdAt;
return createdAt.getFullYear() === dateFilter.year
&& createdAt.getMonth() === dateFilter.month;
&& createdAt.getMonth() === dateFilter.month - 1;
});
return match ?? null;