Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Mar 23, 2020
1 parent 3bba163 commit db8de00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/src/modules/components/AppContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import clsx from 'clsx';
import { makeStyles } from '@material-ui/core/styles';
import Container from '@material-ui/core/Container';

const useStyles = makeStyles(theme => ({
const useStyles = makeStyles((theme) => ({
root: {
paddingTop: 80 + 16,
[theme.breakpoints.up('lg')]: {
Expand Down
4 changes: 2 additions & 2 deletions packages/material-ui/src/styles/createPalette.spec.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { Color } from '@material-ui/core';
import { blue, common } from '@material-ui/core/colors';
import {
createPalette,
createMuiTheme,
PaletteColorOptions,
SimplePaletteColorOptions,
Theme,
} from '@material-ui/core/styles';

{
const palette = createPalette({});
const palette = createMuiTheme().palette;
const color: Color = blue;
const option: SimplePaletteColorOptions = { main: blue[400] };
const colorOrOption: PaletteColorOptions = undefined as any;
Expand Down

0 comments on commit db8de00

Please sign in to comment.