diff --git a/apps/backend/src/api/routes/posts.controller.ts b/apps/backend/src/api/routes/posts.controller.ts index 8f06b6a1..a05cf702 100644 --- a/apps/backend/src/api/routes/posts.controller.ts +++ b/apps/backend/src/api/routes/posts.controller.ts @@ -218,11 +218,6 @@ export class PostsController { ) { return (async () => { const res = await this._postsService.changeDate(org.id, id, date, action); - if (action === 'schedule') { - try { - Sentry.metrics.count('posts.scheduled', 1, { attributes: { scheduleType: action } } as any); - } catch (e) {} - } return res; })();