Only show hosts in expanded view.

This commit is contained in:
Mike Cao 2024-06-18 23:09:29 -07:00
parent 0626a33d75
commit 74a3cb6dac
2 changed files with 6 additions and 8 deletions

View file

@ -2,7 +2,6 @@ import { useState } from 'react';
import { Grid, GridRow } from 'components/layout/Grid';
import PagesTable from 'components/metrics/PagesTable';
import ReferrersTable from 'components/metrics/ReferrersTable';
import HostsTable from 'components/metrics/HostsTable';
import BrowsersTable from 'components/metrics/BrowsersTable';
import OSTable from 'components/metrics/OSTable';
import DevicesTable from 'components/metrics/DevicesTable';
@ -20,10 +19,9 @@ export default function WebsiteTableView({ websiteId }: { websiteId: string }) {
return (
<Grid>
<GridRow columns="three">
<GridRow columns="two">
<PagesTable {...tableProps} />
<ReferrersTable {...tableProps} />
<HostsTable {...tableProps} />
</GridRow>
<GridRow columns="three">
<BrowsersTable {...tableProps} />