Skip to content

Commit 9742a9e

Browse files
committed
Grid2 fix
Signed-off-by: Lee Calcote <lee.calcote@layer5.io>
1 parent a7365e6 commit 9742a9e

File tree

6 files changed

+6
-10
lines changed

6 files changed

+6
-10
lines changed

src/custom/DashboardWidgets/GettingStartedWidget/GetStartedModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/* eslint-disable @typescript-eslint/no-explicit-any */
2-
import Grid2 from '@mui/material/Grid2';
32
import { SwipeableDrawer } from '@mui/material';
43
import { useState } from 'react';
54
import {
65
Backdrop,
76
CircularProgress,
87
DialogContent,
98
DialogTitle,
9+
Grid2,
1010
ListItem,
1111
Typography
1212
} from '../../../base';

src/custom/InputSearchField/InputSearchField.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
import Grid2 from '@mui/material/Grid2';
21
import { Autocomplete } from '@mui/material';
32
import React, { useCallback, useEffect, useState } from 'react';
4-
import { Box, Chip, CircularProgress, TextField, Tooltip, Typography } from '../../base';
3+
import { Box, Chip, CircularProgress, Grid2, TextField, Tooltip, Typography } from '../../base';
54

65
import { iconLarge, iconSmall } from '../../constants/iconsSizes';
76
import { CloseIcon, OrgIcon } from '../../icons';

src/custom/ResourceDetailFormatters/styles.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import Grid2 from '@mui/material/Grid2';
21
import { alpha } from '@mui/material';
3-
import { Box, Chip, IconButton, Typography } from '../../base';
2+
import { Box, Chip, Grid2, IconButton, Typography } from '../../base';
43

54
import { charcoal, KEPPEL, styled } from '../../theme';
65

src/custom/TeamTable/TeamTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable @typescript-eslint/no-explicit-any */
2-
import Grid2 from '@mui/material/Grid2';
32
import { TableCell } from '@mui/material';
43
import { MUIDataTableColumn } from '@sistent/mui-datatables';
4+
import { Grid2 } from '../../base';
55
import { styled, useTheme } from '../../theme';
66
import { ErrorBoundary } from '../ErrorBoundary/ErrorBoundary.js';
77
import { ColView } from '../Helpers/ResponsiveColumns/responsive-coulmns.tsx/index.js';

src/custom/TransferModal/TransferList/style.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import Grid2 from '@mui/material/Grid2';
21
import { styled } from '@mui/material';
3-
import { Button, Chip, Paper, Typography } from '../../../base';
2+
import { Button, Chip, Grid2, Paper, Typography } from '../../../base';
43

54
export const StyledChip = styled(Chip)(({ theme }) => ({
65
padding: '5px 6px !important',

src/custom/Workspaces/WorkspaceCard.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import Grid2 from '@mui/material/Grid2';
21
import { useTheme } from '@mui/material';
3-
import { Backdrop, CircularProgress } from '../../base';
2+
import { Backdrop, CircularProgress, Grid2 } from '../../base';
43

54
import { getRelativeTime } from '../../utils';
65
import { FlipCard } from '../FlipCard';

0 commit comments

Comments
 (0)