Skip to content

Commit

Permalink
fix(gatsby-theme-docz): flex component aligmItems -> alignItems (#1391)
Browse files Browse the repository at this point in the history
changed <Flex aligmItems="center"> to <Flex alignItems="center">
  • Loading branch information
KonnorRogers authored Feb 13, 2020
1 parent 079039e commit b80524f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/gatsby-theme-docz/src/components/Logo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as styles from './styles'
export const Logo = () => {
const config = useConfig()
return (
<Flex aligmItems="center" sx={styles.logo} data-testid="logo">
<Flex alignItems="center" sx={styles.logo} data-testid="logo">
<Link to="/" sx={styles.link}>
{config.title}
</Link>
Expand Down

0 comments on commit b80524f

Please sign in to comment.