diff --git a/packages/manager/.changeset/pr-13343-changed-1769692214312.md b/packages/manager/.changeset/pr-13343-changed-1769692214312.md new file mode 100644 index 00000000000..c764ed1ead3 --- /dev/null +++ b/packages/manager/.changeset/pr-13343-changed-1769692214312.md @@ -0,0 +1,5 @@ +--- +"@linode/manager": Changed +--- + +Logs Stream and Destination tables mobile view ([#13343](https://github.com/linode/manager/pull/13343)) diff --git a/packages/manager/src/features/Delivery/Destinations/DestinationsLanding.tsx b/packages/manager/src/features/Delivery/Destinations/DestinationsLanding.tsx index a0263faa8ac..8158e83d221 100644 --- a/packages/manager/src/features/Delivery/Destinations/DestinationsLanding.tsx +++ b/packages/manager/src/features/Delivery/Destinations/DestinationsLanding.tsx @@ -1,11 +1,11 @@ import { useDestinationsQuery } from '@linode/queries'; import { CircleProgress, ErrorState, Hidden, Paper } from '@linode/ui'; import { TableBody, TableHead, TableRow } from '@mui/material'; -import Table from '@mui/material/Table'; import { useNavigate, useSearch } from '@tanstack/react-router'; import * as React from 'react'; import { PaginationFooter } from 'src/components/PaginationFooter/PaginationFooter'; +import { Table } from 'src/components/Table'; import { TableCell } from 'src/components/TableCell'; import { TableRowEmpty } from 'src/components/TableRowEmpty/TableRowEmpty'; import { TableSortCell } from 'src/components/TableSortCell'; diff --git a/packages/manager/src/features/Delivery/Streams/StreamsLanding.tsx b/packages/manager/src/features/Delivery/Streams/StreamsLanding.tsx index 34b7fb5f5a2..cfa7d246829 100644 --- a/packages/manager/src/features/Delivery/Streams/StreamsLanding.tsx +++ b/packages/manager/src/features/Delivery/Streams/StreamsLanding.tsx @@ -2,12 +2,12 @@ import { streamStatus } from '@linode/api-v4'; import { useStreamsQuery, useUpdateStreamMutation } from '@linode/queries'; import { CircleProgress, ErrorState, Hidden, Paper } from '@linode/ui'; import { TableBody, TableCell, TableHead, TableRow } from '@mui/material'; -import Table from '@mui/material/Table'; import { useNavigate, useSearch } from '@tanstack/react-router'; import { enqueueSnackbar } from 'notistack'; import * as React from 'react'; import { PaginationFooter } from 'src/components/PaginationFooter/PaginationFooter'; +import { Table } from 'src/components/Table'; import { TableRowEmpty } from 'src/components/TableRowEmpty/TableRowEmpty'; import { TableSortCell } from 'src/components/TableSortCell'; import { DeliveryTabHeader } from 'src/features/Delivery/Shared/DeliveryTabHeader/DeliveryTabHeader';