Skip to content

Commit

Permalink
fix Vercel errors
Browse files Browse the repository at this point in the history
  • Loading branch information
iNeso1984 committed Sep 11, 2022
1 parent 3d471eb commit b177c33
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ module.exports = {
'no-useless-catch': 'off',
'no-undef': 'off',
'no-debugger': 'off',
'prettier/prettier': [

This comment has been minimized.

Copy link
@andrew-t-james

andrew-t-james Sep 11, 2022

Member

Please revert.

'warn',
{
endOfLine: 'auto',
},
],
eqeqeq: ['error', 'always'],
'getter-return': [
'error',
Expand Down
2 changes: 1 addition & 1 deletion src/pages/confirmation.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function Confirmation() {
<div className="resume-container">
<div className="rc-response">
<Image src={CheckCircle} alt="Green Check" />
<h1>Here's Your Resume!</h1>
<h1>Here is your Resume!</h1>
<h3>Now that you have an awesome resume, time to go get that dream job!</h3>
<div className="rc-response__action">
<Link href="/resume-builder" passHref>
Expand Down
5 changes: 2 additions & 3 deletions src/pages/resume-builder.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/* NOTE: This file name was renamed to resume-builder to make the path name
read better when linked from the Nav component */

import { NextSeo } from 'next-seo'
import PageHeader from '@/components/PageHeader'
import Link from 'next/link'
Expand All @@ -12,7 +11,7 @@ function ResumeBuilder() {
<PageHeader />

<div className="container">
<div class="resume-wrapper">
<div className="resume-wrapper">
<div className="landing-text">
<h1 id="page-title">
<span>#VetsWhoCode</span> Resume Builder
Expand Down Expand Up @@ -44,4 +43,4 @@ function ResumeBuilder() {
)
}

export default ResumeBuilder
export default ResumeBuilder
2 changes: 1 addition & 1 deletion src/pages/resume-input.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const ResumeInput = () => {
<NextSeo title="Resume Information" />
<PageHeader />
<div className="container">
<div class="resume-wrapper">
<div className="resume-wrapper">
<h1 className="contact-heading">Contact</h1>
<form>
<div className="rb-section">
Expand Down

0 comments on commit b177c33

Please sign in to comment.