Skip to content

Commit aa573e2

Browse files
committed
fixes
1 parent 66fafd7 commit aa573e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/__tests__/ApiClient.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('APIClient', () => {
1818
expect(mockedAxios.create).toHaveBeenCalledWith({
1919
baseURL,
2020
headers: {
21-
Authorization: `Bearer ${apiToken}`
21+
'X-API-KEY': 'test-token'
2222
}
2323
})
2424
})

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Client from './Client'
22

3-
export type * from './types/Prompt'
3+
export type * from './types'
44

55
export default Client

0 commit comments

Comments
 (0)