Skip to content

Commit

Permalink
fix: Gamma symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewscwei committed Sep 19, 2024
1 parent 6cf4aa0 commit b339cb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Statistics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export default function Statistics({
<span>{numBetas === 0 ? '--' : numBetas}</span>
</StyledFilterButton>
<StyledFilterButton isActive={filters.gamma} onClick={() => dispatch(changeFallaciesFiltersAction({ ...filters, gamma: !filters.gamma }))}>
<span>𝛾</span>
<span>γ</span>
<span>{numGammas === 0 ? '--' : numGammas}</span>
</StyledFilterButton>
</StyledRoot>
Expand Down

0 comments on commit b339cb5

Please sign in to comment.