Skip to content

Commit

Permalink
fix(providers): make webex apiBaseUrl optional (#10354)
Browse files Browse the repository at this point in the history
Co-authored-by: Thang Vu <hi@thvu.dev>
  • Loading branch information
askmrsinh and ThangHuuVu committed Apr 6, 2024
1 parent 8120fd4 commit edc4fe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/providers/webex.ts
Expand Up @@ -73,7 +73,7 @@ export interface WebexProfile extends Record<string, any> {
* :::
*/
export default function Webex<P extends WebexProfile>(
config: OAuthUserConfig<P> & { apiBaseUrl: string }
config: OAuthUserConfig<P> & { apiBaseUrl?: string }
): OAuthConfig<P> {
const apiBaseUrl = config?.apiBaseUrl ?? "https://webexapis.com/v1"

Expand Down

0 comments on commit edc4fe4

Please sign in to comment.