aboutsummaryrefslogtreecommitdiff
path: root/src/services/SocialLinkingService.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/services/SocialLinkingService.ts')
-rw-r--r--src/services/SocialLinkingService.ts21
1 files changed, 10 insertions, 11 deletions
diff --git a/src/services/SocialLinkingService.ts b/src/services/SocialLinkingService.ts
index 90b26c96..77caceec 100644
--- a/src/services/SocialLinkingService.ts
+++ b/src/services/SocialLinkingService.ts
@@ -107,17 +107,16 @@ export const registerIntegratedSocialLink: (
// Twitter is a special case since they use OAuth1, we will need to request
// for a request_token before we can begin browser signin.
-export const getTwitterRequestToken: (
- user_token: string,
-) => Promise<string> = async (user_token) => {
- const response = await fetch(integratedEndpoints.Twitter[0], {
- method: 'GET',
- headers: {
- Authorization: `Token ${user_token}`,
- },
- });
- return response.url;
-};
+export const getTwitterRequestToken: (user_token: string) => Promise<string> =
+ async (user_token) => {
+ const response = await fetch(integratedEndpoints.Twitter[0], {
+ method: 'GET',
+ headers: {
+ Authorization: `Token ${user_token}`,
+ },
+ });
+ return response.url;
+ };
// one stop shop for handling all browser sign-in social linkings
export const handlePressForAuthBrowser: (