Skip to content

Commit

Permalink
Merge pull request #4648 from kishanprmr/trello-dropdown-error
Browse files Browse the repository at this point in the history
fix(trello): fix boards dropdown error
  • Loading branch information
abuaboud committed May 8, 2024
2 parents f1421f5 + b084af5 commit 7a98b70
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 9 deletions.
2 changes: 1 addition & 1 deletion packages/pieces/community/trello/package.json
@@ -1,4 +1,4 @@
{
"name": "@activepieces/piece-trello",
"version": "0.3.5"
"version": "0.3.6"
}
2 changes: 0 additions & 2 deletions packages/pieces/community/trello/src/lib/actions/get-card.ts
Expand Up @@ -34,8 +34,6 @@ export const getCard = createAction({
headers: {
Accept: 'application/json',
},
body: {},
queryParams: {},
};
return (await httpClient.sendRequest<TrelloCard>(request)).body;
},
Expand Down
6 changes: 0 additions & 6 deletions packages/pieces/community/trello/src/lib/common/index.ts
Expand Up @@ -184,8 +184,6 @@ async function getAuthorisedUser(apikey: string, token: string) {
headers: {
Accept: 'application/json',
},
body: {},
queryParams: {},
};
const response = await httpClient.sendRequest(request);

Expand All @@ -211,8 +209,6 @@ async function listBoards(apikey: string, token: string, user_id: string) {
headers: {
Accept: 'application/json',
},
body: {},
queryParams: {},
};
const response = await httpClient.sendRequest<{ id: string; name: string }[]>(
request
Expand Down Expand Up @@ -240,8 +236,6 @@ async function listBoardLists(apikey: string, token: string, board_id: string) {
headers: {
Accept: 'application/json',
},
body: {},
queryParams: {},
};
const response = await httpClient.sendRequest<{ id: string; name: string }[]>(
request
Expand Down

0 comments on commit 7a98b70

Please sign in to comment.