Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
EliteAsian123 committed Aug 13, 2024
1 parent a738376 commit de7835f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/routes/Marketplace/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ import { useQuery } from "@tanstack/react-query";
function Marketplace() {
const marketIndexQuery = useQuery({
queryKey: ["MarketIndex"],
queryFn: async (): Promise<MarketplaceIndex> =>
await fetch("https://releases.yarg.in/profiles/marketIndex.json")
queryFn: async (): Promise<MarketplaceIndex> => await fetch("https://releases.yarg.in/profiles/marketIndex.json")
.then(res => res.json())
});

Expand Down

0 comments on commit de7835f

Please sign in to comment.