Skip to content

Commit

Permalink
Fix amended filing definition
Browse files Browse the repository at this point in the history
  • Loading branch information
chadokruse committed Jan 15, 2025
1 parent d3d4456 commit 5a59e9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/legacy/src/lib/components/Profile.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
const orgFinancialStats = $derived(page.financial_stats);
const displayedFilingIsAmendment = $derived(page.filings.slice(0, 7).map((f) => f.filing_is_amendment));
const displayedFilingIsAmendment = $derived(page.filings.some((f) => f.filing_is_amendment));
let algolia = $derived(() => {
// Ensure profiles with only 2009, 2010, 2011, or 2012 grants do NOT use Algolia
Expand Down

0 comments on commit 5a59e9c

Please sign in to comment.