Skip to content

Commit 6255c37

Browse files
leecalcoteCopilot
andauthored
Apply suggestions from code review
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Lee Calcote <leecalcote@gmail.com>
1 parent 1861ec4 commit 6255c37

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

src/base/Hidden/Hidden.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export interface HiddenProps {
1616
mdDown?: boolean;
1717
lgDown?: boolean;
1818
xlDown?: boolean;
19-
implementation?: 'js' | 'css';
19+
2020
}
2121

2222
export const Hidden = ({

src/custom/InputSearchField/InputSearchField.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { Autocomplete, Grid as Grid2 } from '@mui/material';
1+
import { Autocomplete } from '@mui/material';
2+
import Grid2 from '@mui/material/Unstable_Grid2';
23
import React, { useCallback, useEffect, useState } from 'react';
34
import { Box, Chip, CircularProgress, TextField, Tooltip, Typography } from '../../base';
45

src/custom/ResourceDetailFormatters/styles.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { alpha, Grid as Grid2 } from '@mui/material';
1+
import { alpha } from '@mui/material';
2+
import Grid2 from '@mui/material/Unstable_Grid2';
23
import { Box, Chip, IconButton, Typography } from '../../base';
34

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

src/custom/TeamTable/TeamTable.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/* eslint-disable @typescript-eslint/no-explicit-any */
2-
import { Grid as Grid2, TableCell } from '@mui/material';
2+
import Grid2 from '@mui/material/Unstable_Grid2';
3+
import { TableCell } from '@mui/material';
34
import { MUIDataTableColumn } from '@sistent/mui-datatables';
45
import { styled, useTheme } from '../../theme';
56
import { ErrorBoundary } from '../ErrorBoundary/ErrorBoundary.js';

src/custom/Workspaces/WorkspaceCard.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { Grid as Grid2, useTheme } from '@mui/material';
1+
import Grid2 from '@mui/material/Unstable_Grid2';
2+
import { useTheme } from '@mui/material';
23
import { Backdrop, CircularProgress } from '../../base';
34

45
import { getRelativeTime } from '../../utils';

0 commit comments

Comments
 (0)