Skip to content

Commit

Permalink
fix: rtl IError type (#928)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryans99 authored Dec 20, 2021
1 parent cde39cf commit 7d8f906
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/sdk-rtl/src/authSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import type { IRequestProps, ITransport, SDKResponse } from './transport'
import { sdkError } from './transport'
import type { IApiSettings } from './apiSettings'
import type { Url } from './constants'

/**
* Same as the Looker API access token object
Expand Down Expand Up @@ -60,11 +59,11 @@ export interface IError {
/**
* Error details (read-only)
*/
message: string
message: string | null
/**
* Documentation link (read-only)
*/
documentation_url: Url
documentation_url: string | null
}

/**
Expand Down

0 comments on commit 7d8f906

Please sign in to comment.