Skip to content

Commit

Permalink
Tune dashboard TX list size
Browse files Browse the repository at this point in the history
  • Loading branch information
csillag committed Feb 21, 2024
1 parent 133f05a commit ba40d46
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,13 @@ import { Link as RouterLink } from 'react-router-dom'
import Link from '@mui/material/Link'
import { Layer, useGetRuntimeTransactions } from '../../../oasis-nexus/api'
import { RuntimeTransactions } from '../../components/Transactions'
import { NUMBER_OF_ITEMS_ON_DASHBOARD } from '../../config'
import { COLORS } from '../../../styles/theme/colors'
import { AppErrors } from '../../../types/errors'
import { RouteUtils } from '../../utils/route-utils'
import { useScreenSize } from '../../hooks/useScreensize'
import { SearchScope } from '../../../types/searchScope'

const limit = NUMBER_OF_ITEMS_ON_DASHBOARD
const limit = 15 // NUMBER_OF_ITEMS_ON_DASHBOARD

export const LatestRuntimeTransactions: FC<{ scope: SearchScope }> = ({ scope }) => {
const { isTablet } = useScreenSize()
Expand Down

0 comments on commit ba40d46

Please sign in to comment.