Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(trello): fix boards dropdown error #4648

Merged
merged 2 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/pieces/community/trello/package.json
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Loading