Skip to content

Commit

Permalink
fix: fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
songwongtp committed Mar 27, 2024
1 parent d8ef43b commit d133bde
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { TableContainer } from "@chakra-ui/react";
import React from "react";
import { Fragment } from "react";

import { ValidatorOrder } from "../../types";
import { useCelatoneApp, useMobile } from "lib/app-provider";
Expand Down Expand Up @@ -89,7 +89,7 @@ export const ValidatorsTable = ({
setIsDesc={setIsDesc}
/>
{data.items.map((validator) => (
<React.Fragment key={validator.validatorAddress}>
<Fragment key={validator.validatorAddress}>
<ValidatorsTableRow
templateColumns={templateColumns}
isActive={isActive}
Expand All @@ -110,7 +110,7 @@ export const ValidatorsTable = ({
}
/>
)}
</React.Fragment>
</Fragment>
))}
</TableContainer>
)}
Expand Down

0 comments on commit d133bde

Please sign in to comment.