Skip to content

Commit

Permalink
Merge pull request #80 from aic-factcheck/migrate_fe
Browse files Browse the repository at this point in the history
Migrate fe
  • Loading branch information
romanbutora committed Sep 23, 2023
2 parents 338b6ee + fb15527 commit d624b6d
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(Array.from(res.data))).catch();
}, [auth, navigate]);

Expand Down

0 comments on commit d624b6d

Please sign in to comment.