mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
feat: add deprecation note on mobile builds
This commit is contained in:
parent
01cda6c45a
commit
adeb7366dd
1 changed files with 5 additions and 0 deletions
|
|
@ -2,6 +2,7 @@ import { Stack, Tabs, TabList, Tab, Text, TabPanel, TabPanels } from '@chakra-ui
|
|||
import { FC, useMemo } from 'react';
|
||||
|
||||
import { DataTable } from '../../UI';
|
||||
import { BuildsDeprecationNote } from './BuildsDeprecationNote';
|
||||
|
||||
import { DOWNLOADS_TABLE_TABS, DOWNLOADS_TABLE_TAB_COLUMN_HEADERS } from '../../../constants';
|
||||
import { ReleaseData } from '../../../types';
|
||||
|
|
@ -102,12 +103,16 @@ export const DownloadsTable: FC<Props> = ({
|
|||
/>
|
||||
</TabPanel>
|
||||
<TabPanel p={0}>
|
||||
<BuildsDeprecationNote os='iOS' />
|
||||
|
||||
<DataTable
|
||||
columnHeaders={DOWNLOADS_TABLE_TAB_COLUMN_HEADERS}
|
||||
data={iOSData.slice(0, amountOfReleasesToShow)}
|
||||
/>
|
||||
</TabPanel>
|
||||
<TabPanel p={0}>
|
||||
<BuildsDeprecationNote os='Android' />
|
||||
|
||||
<DataTable
|
||||
columnHeaders={DOWNLOADS_TABLE_TAB_COLUMN_HEADERS}
|
||||
data={androidData.slice(0, amountOfReleasesToShow)}
|
||||
|
|
|
|||
Loading…
Reference in a new issue