Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
luciagirasoles committed Feb 27, 2024
1 parent 55ba006 commit 8168565
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 2 additions & 3 deletions app/javascript/components/layout/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Twitter from 'components/icons/Twitter';

import 'stylesheets/footer.scss';

const Footer = () =>
const Footer = () => (
<footer>
<div className="footer">
<div className="footer-left">
Expand Down Expand Up @@ -85,6 +85,5 @@ const Footer = () =>
</div>
</div>
</footer>
;

);
export default Footer;
4 changes: 1 addition & 3 deletions app/javascript/components/layout/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ import Button from 'components/Button';
import 'stylesheets/header.scss';

const Header = () => {
const links = [
{ id: 1, text: 'Meetups', href: '/meetups' },
];
const links = [{ id: 1, text: 'Meetups', href: '/meetups' }];

const [headerState, setHeaderState] = useState({
className: '',
Expand Down

0 comments on commit 8168565

Please sign in to comment.