Skip to content

Commit c5fdadb

Browse files
committed
[grid] Removing unneeded component background
[skip ci]
1 parent 989f7fd commit c5fdadb

6 files changed

Lines changed: 4 additions & 7 deletions

File tree

javascript/grid-ui/src/components/Error/Error.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ function Error (props) {
2525
height="100%"
2626
width="100%"
2727
paddingY={3}
28-
sx={{ bgcolor: 'secondary.main' }}
2928
>
3029
<Box
3130
display="flex"

javascript/grid-ui/src/components/LiveView/LiveView.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ function LiveView (props) {
7474
return () => {
7575
disconnect()
7676
}
77+
// eslint-disable-next-line
7778
}, [])
7879

7980
useEffect(() => {

javascript/grid-ui/src/components/Loading/Loading.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import { Box, Typography } from '@mui/material'
2222
function Loading () {
2323
return (
2424
<Box
25-
sx={{ bgcolor: 'secondary.main' }}
2625
height='100%'
2726
width='100%'
2827
paddingY={1}

javascript/grid-ui/src/components/NavBar/NavBar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@ function NavBarBottom (props): JSX.Element {
9595

9696
return (
9797
<div>
98-
<Box p={3} m={1} sx={{ bgcolor: 'secondary.main' }}>
98+
<Box p={3} m={1}>
9999
<Typography
100-
align='center'
100+
align="center"
101101
gutterBottom
102-
variant='h4'
102+
variant="h4"
103103
>
104104
Queue size: {sessionQueueSize}
105105
</Typography>

javascript/grid-ui/src/components/NavBar/OverallConcurrency.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ function OverallConcurrency (props) {
5454
<Box
5555
p={2}
5656
m={2}
57-
sx={{ bgcolor: 'secondary.main' }}
5857
data-testid='overall-concurrency'
5958
>
6059
<Typography

javascript/grid-ui/src/components/NoData/NoData.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ function NoData (props) {
2626
height='100%'
2727
width='100%'
2828
paddingY={3}
29-
sx={{ bgcolor: 'secondary.main' }}
3029
>
3130
<Box
3231
display='flex'

0 commit comments

Comments
 (0)