refactor: Do not expose search term separately for search tweets

This commit is contained in:
Faruk AYDIN
2022-10-14 23:51:00 +02:00
parent cad42eed54
commit 8a883765d4
2 changed files with 4 additions and 12 deletions

View File

@@ -31,8 +31,6 @@ export default {
],
async run($: IGlobalVariable) {
return await searchTweets($, {
searchTerm: $.step.parameters.searchTerm as string,
});
return await searchTweets($);
},
};