Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor committed Nov 15, 2023
1 parent 9daf1a7 commit f4668ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/markets/MarketsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ const formatPairs = (pairs: PairInfo[]) => {
});
};

const MarketRows = ({ data }) => {
const MarketRows = ({ data }: any) => {
return data?.length ? (
data.map((market, index) => (
data.map((market: any, index: any) => (
<tr className="!border-b-2 !border-b-secondary-content" key={market.id}>
{headers.map((header, i) => (
<td key={header.id}>
Expand Down

0 comments on commit f4668ed

Please sign in to comment.