diff --git a/website/src/components/Playground/src/CodeLitho.js b/website/src/components/Playground/src/CodeLitho.js
index 0e9f782b..66e89a3e 100644
--- a/website/src/components/Playground/src/CodeLitho.js
+++ b/website/src/components/Playground/src/CodeLitho.js
@@ -47,8 +47,8 @@ function dipOrPercent(value) {
return value === 'auto'
? 'Auto'
: typeof value === 'string' && /%$/.test(value)
- ? 'Percent'
- : 'Dip';
+ ? 'Percent'
+ : 'Dip';
}
function getValue(value) {
diff --git a/website/src/components/Playground/src/URLShortener.js b/website/src/components/Playground/src/URLShortener.js
index 77130a0f..27049801 100644
--- a/website/src/components/Playground/src/URLShortener.js
+++ b/website/src/components/Playground/src/URLShortener.js
@@ -52,9 +52,7 @@ export default class URLShortener extends Component<{}, State> {
}
fetch(
- `https://cors-anywhere.herokuapp.com/tinyurl.com/api-create.php?url=${
- window.location.href
- }`,
+ `https://cors-anywhere.herokuapp.com/tinyurl.com/api-create.php?url=${window.location.href}`,
)
.then(res => res.text())
.then(shortURL => this.setState({shortURL, loading: false}))
diff --git a/website/src/pages/docs/index.js b/website/src/pages/docs/index.js
index 66e0a363..96dee1ae 100644
--- a/website/src/pages/docs/index.js
+++ b/website/src/pages/docs/index.js
@@ -49,17 +49,16 @@ export default ({data}) => (
({node}) =>
node.fileAbsolutePath.indexOf(`/${category}/`) > -1,
)
- .map(
- ({node}) =>
- node.frontmatter.redirect ? (
-
- {node.frontmatter.title}
-
- ) : (
-
- {node.frontmatter.title}
-
- ),
+ .map(({node}) =>
+ node.frontmatter.redirect ? (
+
+ {node.frontmatter.title}
+
+ ) : (
+
+ {node.frontmatter.title}
+
+ ),
)}
),