mirror of
https://github.com/snachodog/tok-to-insta-follower-bridge.git
synced 2025-09-12 23:23:31 -06:00
chore: fix lint
This commit is contained in:
@@ -74,4 +74,5 @@ export const MATCH_TYPE_LABEL_AND_COLOR = {
|
||||
},
|
||||
};
|
||||
|
||||
export const AUTH_FACTOR_TOKEN_REQUIRED_ERROR_MESSAGE = "AuthFactorTokenRequiredError";
|
||||
export const AUTH_FACTOR_TOKEN_REQUIRED_ERROR_MESSAGE =
|
||||
"AuthFactorTokenRequiredError";
|
||||
|
@@ -25,5 +25,10 @@ export const getAccountNameAndDisplayName = (userCell: Element) => {
|
||||
const twAccountNameRemoveUnderscore = twAccountName.replaceAll("_", ""); // bsky does not allow underscores in handle, so remove them.
|
||||
const twAccountNameReplaceUnderscore = twAccountName.replaceAll("_", "-");
|
||||
const twDisplayName = displayNameEl?.textContent;
|
||||
return { twAccountName, twDisplayName, twAccountNameRemoveUnderscore, twAccountNameReplaceUnderscore };
|
||||
return {
|
||||
twAccountName,
|
||||
twDisplayName,
|
||||
twAccountNameRemoveUnderscore,
|
||||
twAccountNameReplaceUnderscore,
|
||||
};
|
||||
};
|
||||
|
@@ -33,7 +33,8 @@ export const searchBskyUser = async ({
|
||||
{
|
||||
accountName: userData.twAccountName,
|
||||
accountNameRemoveUnderscore: userData.twAccountNameRemoveUnderscore,
|
||||
accountNameReplaceUnderscore: userData.twAccountNameReplaceUnderscore,
|
||||
accountNameReplaceUnderscore:
|
||||
userData.twAccountNameReplaceUnderscore,
|
||||
displayName: userData.twDisplayName,
|
||||
},
|
||||
searchResult,
|
||||
|
Reference in New Issue
Block a user