Skip to content

Commit

Permalink
fix: change function name
Browse files Browse the repository at this point in the history
  • Loading branch information
jaesius committed Mar 24, 2021
1 parent eea3d99 commit e7b0ba8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/nerdlog-thank-you.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import DevSiteSeo from '../components/DevSiteSeo';
import nerdlogBanner from '../images/nerdlog/nerdlog-banner.png';
import styles from './nerd-days.module.scss';

const NerdDaysPage = ({ location }) => {
const NerdlogPage = ({ location }) => {
return (
<>
<DevSiteSeo location={location} />
Expand Down Expand Up @@ -35,8 +35,8 @@ const NerdDaysPage = ({ location }) => {
);
};

NerdDaysPage.propTypes = {
NerdlogPage.propTypes = {
location: PropTypes.object.isRequired,
};

export default NerdDaysPage;
export default NerdlogPage;

0 comments on commit e7b0ba8

Please sign in to comment.