mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-16 21:16:37 +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 { FC, useMemo } from 'react';
|
||||||
|
|
||||||
import { DataTable } from '../../UI';
|
import { DataTable } from '../../UI';
|
||||||
|
import { BuildsDeprecationNote } from './BuildsDeprecationNote';
|
||||||
|
|
||||||
import { DOWNLOADS_TABLE_TABS, DOWNLOADS_TABLE_TAB_COLUMN_HEADERS } from '../../../constants';
|
import { DOWNLOADS_TABLE_TABS, DOWNLOADS_TABLE_TAB_COLUMN_HEADERS } from '../../../constants';
|
||||||
import { ReleaseData } from '../../../types';
|
import { ReleaseData } from '../../../types';
|
||||||
|
|
@ -102,12 +103,16 @@ export const DownloadsTable: FC<Props> = ({
|
||||||
/>
|
/>
|
||||||
</TabPanel>
|
</TabPanel>
|
||||||
<TabPanel p={0}>
|
<TabPanel p={0}>
|
||||||
|
<BuildsDeprecationNote os='iOS' />
|
||||||
|
|
||||||
<DataTable
|
<DataTable
|
||||||
columnHeaders={DOWNLOADS_TABLE_TAB_COLUMN_HEADERS}
|
columnHeaders={DOWNLOADS_TABLE_TAB_COLUMN_HEADERS}
|
||||||
data={iOSData.slice(0, amountOfReleasesToShow)}
|
data={iOSData.slice(0, amountOfReleasesToShow)}
|
||||||
/>
|
/>
|
||||||
</TabPanel>
|
</TabPanel>
|
||||||
<TabPanel p={0}>
|
<TabPanel p={0}>
|
||||||
|
<BuildsDeprecationNote os='Android' />
|
||||||
|
|
||||||
<DataTable
|
<DataTable
|
||||||
columnHeaders={DOWNLOADS_TABLE_TAB_COLUMN_HEADERS}
|
columnHeaders={DOWNLOADS_TABLE_TAB_COLUMN_HEADERS}
|
||||||
data={androidData.slice(0, amountOfReleasesToShow)}
|
data={androidData.slice(0, amountOfReleasesToShow)}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue