Skip to content

Commit

Permalink
Only use named imports of react-helmet (#458)
Browse files Browse the repository at this point in the history
The default export will be removed in version 6.0.0
and is currently missing in @types/react-helmet@5.0.11.
  • Loading branch information
ansgarprause authored and nimzco committed Oct 14, 2019
1 parent 56b8a3c commit a373482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Pages/Structure.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import Helmet from 'react-helmet';
import {Helmet} from 'react-helmet';
import Favicon from 'react-favicon';

import styles from './Structure.scss';
Expand Down

0 comments on commit a373482

Please sign in to comment.