Skip to content

Commit

Permalink
remove divider on mobile asset flows
Browse files Browse the repository at this point in the history
  • Loading branch information
NahuelNoves committed Mar 22, 2024
1 parent 0c74939 commit b18f25d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ui/tx/TxAssetFlows.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Table, Tbody, Tr, Th, Box, Skeleton, Text, Show, Hide, Divider } from '@chakra-ui/react';
import { Table, Tbody, Tr, Th, Box, Skeleton, Text, Show, Hide } from '@chakra-ui/react';
import _ from 'lodash';
import React, { useMemo, useState } from 'react';

Expand Down Expand Up @@ -72,8 +72,6 @@ export default function TxAssetFlows(props: FlowViewProps) {
const content = (
<>
<Hide above="lg" >
{ data?.length && <Divider borderColor="gray.200" mb={ 4 }/> }

{ data?.map((item, i) => (
<TxAssetFlowsListItem
key={ `${ i }-${ item.accountAddress }` }
Expand Down

0 comments on commit b18f25d

Please sign in to comment.