We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8c5ccd commit c607f6aCopy full SHA for c607f6a
1 file changed
app/components/Occupied/helpers/muiHelper.ts
@@ -1,11 +1,11 @@
1
2
import { makeStyles } from '@mui/styles';
3
-import { AliasesCSSProperties } from '@mui/system/';
+// import { BaseCSSProperties } from '@mui/system';
4
5
// Conditional Rendering of UI Modals for Light and Dark Mode
6
// Theme, StyleProps
7
8
-export const useStylesDark = makeStyles<AliasesCSSProperties>(theme => ({
+export const useStylesDark = makeStyles(theme => ({
9
// ALL CARDS
10
paper: {
11
display: 'flex',
@@ -59,7 +59,7 @@ export const useStylesDark = makeStyles<AliasesCSSProperties>(theme => ({
59
},
60
}));
61
62
-export const useStylesLight = makeStyles<AliasesCSSProperties>(theme => ({
+export const useStylesLight = makeStyles(theme => ({
63
64
65
0 commit comments