Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
bchiang7 committed Oct 17, 2018
1 parent a9306be commit 32d17bd
Show file tree
Hide file tree
Showing 3 changed files with 352 additions and 415 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,22 @@
"dependencies": {
"animejs": "^2.2.0",
"babel-plugin-styled-components": "^1.8.0",
"gatsby": "^2.0.21",
"gatsby-image": "^2.0.13",
"gatsby": "^2.0.25",
"gatsby-image": "^2.0.15",
"gatsby-plugin-google-analytics": "^2.0.6",
"gatsby-plugin-manifest": "^2.0.5",
"gatsby-plugin-netlify": "^2.0.1",
"gatsby-plugin-offline": "^2.0.6",
"gatsby-plugin-offline": "^2.0.7",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-robots-txt": "^1.3.0",
"gatsby-plugin-sharp": "^2.0.6",
"gatsby-plugin-sharp": "^2.0.7",
"gatsby-plugin-sitemap": "^2.0.1",
"gatsby-plugin-styled-components": "^3.0.0",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "^2.0.4",
"gatsby-source-filesystem": "^2.0.3",
"gatsby-source-filesystem": "^2.0.4",
"gatsby-transformer-remark": "^2.1.7",
"gatsby-transformer-sharp": "^2.1.3",
"gatsby-transformer-sharp": "^2.1.4",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-anchor-link-smooth-scroll": "^1.0.11",
Expand All @@ -56,14 +56,14 @@
"@upstatement/eslint-config": "0.2.2",
"@upstatement/prettier-config": "^0.2.2",
"babel-eslint": "^10.0.1",
"eslint": "^5.6.1",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"pretty-quick": "^1.7.0"
"pretty-quick": "^1.8.0"
}
}
4 changes: 2 additions & 2 deletions src/components/jobs.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class Jobs extends Component {
aria-selected={this.isActive(i) ? 'true' : 'false'}
aria-controls={`tab${i}`}
id={`tab${i}`}
tabindex={this.isActive(i) ? '0' : '-1'}>
tabIndex={this.isActive(i) ? '0' : '-1'}>
<span>{node.frontmatter.company}</span>
</Tab>
))}
Expand All @@ -197,7 +197,7 @@ class Jobs extends Component {
isActive={this.isActive(i)}
id={`job${i}`}
role="tabpanel"
tabindex="0"
tabIndex="0"
aria-labelledby={`job${i}`}
aria-hidden={!this.isActive(i)}>
<JobTitle>
Expand Down
Loading

0 comments on commit 32d17bd

Please sign in to comment.