-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DT-1144: Update Support Destination URLs #2768
base: develop
Are you sure you want to change the base?
Conversation
export const getFileNameFromHttpResponse = (response) => { | ||
const respHeaders = response.headers; | ||
return respHeaders.get('Content-Disposition').split(';')[1].trim().split('=')[1]; | ||
}; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Drive-by fix: unused method.
export const sleep = (ms) => { | ||
return new Promise(resolve => setTimeout(resolve, ms)); | ||
}; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Drive-by fix: unused method.
getGoogleClientId: async () => (await getConfig()).clientId, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Drive-by fix: unused method.
Addresses
https://broadworkbench.atlassian.net/browse/DT-1144
Summary
RequestForm
andSupportRequestModal
) that make use of support request functionalityTesting
TODO
Have you read Terra's Contributing Guide lately? If not, do that first.