Skip to content

Commit

Permalink
polish
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Jul 12, 2020
1 parent 9f66ff2 commit 5079f88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/modules/components/MarkdownDocs.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable material-ui/no-hardcoded-labels */
import React from 'react';
import * as PropTypes from 'prop-types';
import clsx from 'clsx';
Expand Down Expand Up @@ -155,7 +156,6 @@ function MarkdownDocs(props) {
);
return (
<div key={index}>
{/* eslint-disable-next-line material-ui/no-hardcoded-labels */}
{warnIcon}
{' Missing demo '}
{name} {warnIcon}
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/customization/breakpoints/WithWidth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import withWidth from '@material-ui/core/withWidth';
import Typography from '@material-ui/core/Typography';

type Breakpoint = number | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
type Breakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
type TagName = 'em' | 'u' | 'del';

const components: Partial<Record<Breakpoint, TagName>> = {
Expand Down

0 comments on commit 5079f88

Please sign in to comment.