mirror of
https://github.com/snachodog/tok-to-insta-follower-bridge.git
synced 2025-04-10 14:11:22 -06:00
fix trailing commas for linter
This commit is contained in:
parent
8f9993285a
commit
55bc18356b
@ -10,7 +10,7 @@ import type { BskyUser, CrawledUserInfo } from "~types";
|
||||
|
||||
const scrapeListNameFromPage = (): string => {
|
||||
const listNameElement = document.querySelector(
|
||||
'div[aria-label="Timeline: List"] span'
|
||||
'div[aria-label="Timeline: List"] span',
|
||||
);
|
||||
if (listNameElement) {
|
||||
return listNameElement.textContent.trim();
|
||||
@ -118,7 +118,7 @@ export const useRetrieveBskyUsers = () => {
|
||||
React.useEffect(() => {
|
||||
chrome.storage.local.set({
|
||||
users: JSON.stringify(users),
|
||||
listName: listName
|
||||
listName: listName,
|
||||
});
|
||||
}, [users, listName]);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user