Skip to content

Commit

Permalink
merge dev
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmarcello committed May 3, 2022
1 parent 3cc36be commit 70183b0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { useTranslation } from '~hooks/useTranslation'
import { nullFn } from '~utils/noop'
import { usePageItems } from './hooks'
import type { IPaginatedListColumn } from './types'
import { OfflineTableNotice } from '../OfflineTableNotice'
import { OfflineTableNoticeOrNoResults } from '../OfflineTableNoticeOrNoResults'

export interface PaginatedDataProps<T> extends StandardComponentProps {
data: T[]
Expand Down Expand Up @@ -69,7 +69,7 @@ export const PaginatedData = memo(function PaginatedData<T>({
) : (
<Row className={cx(styles.itemRow, rowClassName)}>
<Col className={cx(styles.columnItem, styles.noResults)}>
<OfflineTableNotice />
<OfflineTableNoticeOrNoResults />
</Col>
</Row>
)}
Expand Down

0 comments on commit 70183b0

Please sign in to comment.