Skip to content

Commit

Permalink
fix: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
monteri committed Aug 10, 2023
1 parent 056d936 commit e015db5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 2 additions & 2 deletions example/src/MyComponent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useState } from 'react';
import { Button, Form, Icon, Bubble, Skeleton } from '@edx/paragon'; // eslint-disable-line
import { FavoriteBorder } from '@edx/paragon/icons'; // eslint-disable-line

function MyComponent() {
const MyComponent = () => {
const [value, setValue] = useState('');
const handleChange = (e) => setValue(e.target.value);
// eslint-disable-next-line no-alert
Expand Down Expand Up @@ -30,6 +30,6 @@ function MyComponent() {
<Skeleton />
</div>
);
}
};

export default MyComponent;
4 changes: 0 additions & 4 deletions www/src/pages/insights.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ import PropTypes from 'prop-types';
import {
Tabs,
Tab,
TextFilter,
CheckboxFilter,
useMediaQuery,
breakpoints,
} from '~paragon-react';
import SEO from '../components/SEO';
import Layout from '../components/PageLayout';
Expand Down

0 comments on commit e015db5

Please sign in to comment.