We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03bb39f commit e6e8f54Copy full SHA for e6e8f54
packages/core/src/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.ts
@@ -39,7 +39,7 @@ export interface AwsSdkSigV4AAuthResolvedConfig {
39
export const resolveAwsSdkSigV4AConfig = <T>(
40
config: T & AwsSdkSigV4AAuthInputConfig & AwsSdkSigV4APreviouslyResolved
41
): T & AwsSdkSigV4AAuthResolvedConfig => {
42
- config.sigv4aSigningRegionSet = normalizeProvider(config.sigv4aSigningRegionSet ?? []);
+ config.sigv4aSigningRegionSet = normalizeProvider(config.sigv4aSigningRegionSet);
43
return config as T & AwsSdkSigV4AAuthResolvedConfig;
44
};
45
0 commit comments