consistent borders and removed some comments

This commit is contained in:
proddy
2025-11-23 16:55:46 +01:00
parent 935a9dcbb7
commit ef315b6dde
7 changed files with 2 additions and 10 deletions

View File

@@ -3,7 +3,6 @@ import { memo } from 'react';
import { Box, CircularProgress } from '@mui/material';
import type { SxProps, Theme } from '@mui/material';
// Extract styles to prevent recreation on every render
const containerStyles: SxProps<Theme> = {
display: 'flex',
justifyContent: 'center',

View File

@@ -7,7 +7,6 @@ interface LoadingSpinnerProps {
height?: number | string;
}
// Extract styles to prevent recreation on every render
const circularProgressStyles: SxProps<Theme> = (theme: Theme) => ({
margin: theme.spacing(4),
color: theme.palette.text.secondary