Skip to content

Commit 4280198

Browse files
committed
chore: Run Prettier
1 parent 4a6963e commit 4280198

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ learn how: http://kcd.im/pull-request
1818
Relevant code or config
1919

2020
```javascript
21+
2122
```
2223

2324
What you did:

src/transformers/Twitter.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ export const shouldTransform = (url) => {
66
return (
77
['twitter.com', 'www.twitter.com'].includes(host) &&
88
(pathname.includes('/status/') ||
9-
(includesSomeOfArray(pathname, ['/events/', '/moments/', '/timelines/']) &&
9+
(includesSomeOfArray(pathname, [
10+
'/events/',
11+
'/moments/',
12+
'/timelines/',
13+
]) &&
1014
!pathname.includes('/edit/')))
1115
);
1216
};

0 commit comments

Comments
 (0)