Skip to content

Commit

Permalink
chore: Fix changes after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
scottlovegrove committed Sep 8, 2022
1 parent 87f392f commit 6272750
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/TodoistApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ export class TodoistApi {
async getSharedLabels(): Promise<string[]> {
const response = await request<string[]>(
'GET',
API_REST_BASE_URI,
this.restApiBase,
ENDPOINT_REST_LABELS_SHARED,
this.authToken,
)
Expand All @@ -415,7 +415,7 @@ export class TodoistApi {
async renameSharedLabel(args: RenameSharedLabelArgs): Promise<void> {
await request<void>(
'POST',
API_REST_BASE_URI,
this.restApiBase,
ENDPOINT_REST_LABELS_SHARED_RENAME,
this.authToken,
args,
Expand All @@ -425,7 +425,7 @@ export class TodoistApi {
async removeSharedLabel(args: RemoveSharedLabelArgs): Promise<void> {
await request<void>(
'POST',
API_REST_BASE_URI,
this.restApiBase,
ENDPOINT_REST_LABELS_SHARED_REMOVE,
this.authToken,
args,
Expand Down

0 comments on commit 6272750

Please sign in to comment.