Skip to content

Commit 4171f18

Browse files
committed
fix(google-drive): remove dead transformResponse from move tool
1 parent 5b94f40 commit 4171f18

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

apps/sim/tools/google_drive/move.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -124,21 +124,6 @@ export const moveTool: ToolConfig<GoogleDriveMoveParams, GoogleDriveMoveResponse
124124
}
125125
},
126126

127-
transformResponse: async (response: Response) => {
128-
const data = await response.json()
129-
130-
if (!response.ok) {
131-
throw new Error(data.error?.message || 'Failed to move Google Drive file')
132-
}
133-
134-
return {
135-
success: true,
136-
output: {
137-
file: data,
138-
},
139-
}
140-
},
141-
142127
outputs: {
143128
file: {
144129
type: 'json',

0 commit comments

Comments
 (0)