Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarrramsey committed Oct 29, 2024
1 parent 1898e27 commit bb3c66c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {GridFilterModel, GridSortModel} from '@mui/x-data-grid-pro';
import React, {useEffect, useMemo, useRef, useState} from 'react';
import React, {useMemo, useState} from 'react';

import {
IconChevronDown,
Expand All @@ -14,8 +14,6 @@ import {
LatencyPlotlyChart,
RequestsPlotlyChart,
} from './Charts';
import {Box} from '@mui/material';
import {fancyPageSidebarWidth} from '../../../../../../common/css/globals_deprecated.styles';

type CallsChartsProps = {
entity: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const SimplePageLayout: FC<{
flexDirection: 'column',
flexGrow: 1,
height: '100%',
overflow: 'hidden', // here
overflow: 'hidden',
}}>
<Box
sx={{
Expand Down Expand Up @@ -126,7 +126,7 @@ export const SimplePageLayout: FC<{
</Box>
<Box
sx={{
overflow: 'hidden', // here
overflow: 'hidden',
display: 'flex',
flexDirection: 'row',
flex: '1 1 auto',
Expand Down

0 comments on commit bb3c66c

Please sign in to comment.