feat: remove logs

This commit is contained in:
Nevo David 2025-08-07 20:40:01 +07:00
parent e5af638219
commit 1de9a1f605
2 changed files with 0 additions and 6 deletions

View File

@ -27,7 +27,6 @@ export const GeneralPreviewComponent: FC<{
true
);
console.log('newConetnt', newContent);
const { start, end } = textSlicer(
integration?.identifier || '',
props.maximumCharacters || 10000,
@ -46,7 +45,6 @@ export const GeneralPreviewComponent: FC<{
}) +
`</mark>`;
console.log(finalValue);
return { text: finalValue, images: p.image };
});

View File

@ -467,7 +467,6 @@ export class XProvider extends SocialAbstract implements SocialProvider {
return [];
}
console.log(tweets.map((p) => p.id));
const data = await client.v2.tweets(
tweets.map((p) => p.id),
{
@ -503,9 +502,6 @@ export class XProvider extends SocialAbstract implements SocialProvider {
}
);
console.log(metrics);
console.log(JSON.stringify(data, null, 2));
return Object.entries(metrics).map(([key, value]) => ({
label: key.replace('_count', '').replace('_', ' ').toUpperCase(),
percentageChange: 5,