Skip to content

Commit

Permalink
change hot claims landing page to year instead of month
Browse files Browse the repository at this point in the history
  • Loading branch information
romanbutora committed Sep 23, 2023
1 parent 321fa82 commit b44c1d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layouts/landing-page/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const LadingPage: React.FC = () => {
const [claimsList, setClaimsList] = useState<IClaim[]>([]);

useEffect(() => {
claimsService.getClaimsList(1, 'MONTH', 'POSITIVE_VOTES_DESC')
claimsService.getClaimsList(1, 'YEAR', 'POSITIVE_VOTES_DESC')
.then((res: any) => setClaimsList(res.data)).catch();
}, [auth, navigate]);

Expand Down

0 comments on commit b44c1d5

Please sign in to comment.