diff options
author | Vitaly Takmazov | 2019-03-04 19:11:12 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:54 +0300 |
commit | 8d88e399d68f892e073b9d075a3850953032fa3c (patch) | |
tree | c44d70670925e0d96c5c7e74d09934c9beedb7d0 /vnext/src/components/Feeds.js | |
parent | 5e0b2264e306ffbda392e71e91298108ddec63f3 (diff) |
Fix linter configuration
Fix some linter warnings
Diffstat (limited to 'vnext/src/components/Feeds.js')
-rw-r--r-- | vnext/src/components/Feeds.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vnext/src/components/Feeds.js b/vnext/src/components/Feeds.js index d7ed1128..55a4c287 100644 --- a/vnext/src/components/Feeds.js +++ b/vnext/src/components/Feeds.js @@ -105,14 +105,14 @@ function Feed(props) { }).catch(ex => { setError(true); }); - } + }; let getPageParam = (pageParam, lastMessage, filterParams) => { const pageValue = pageParam === 'before_mid' ? lastMessage.mid : pageParam === 'page' ? (Number(filterParams.page) || 0) + 1 : moment.utc(lastMessage.updated).valueOf(); let newFilter = { ...filterParams }; newFilter[pageParam] = pageValue; return `?${qs.stringify(newFilter)}`; - } + }; const { tag } = qs.parse(location.search.substring(1) || {}); const nodes = ( <> |