We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06d0060 commit 7090526Copy full SHA for 7090526
apps/web/app/(org)/dashboard/analytics/s/[id]/page.tsx
apps/web/app/api/analytics/track/route.ts
@@ -81,7 +81,8 @@ export async function POST(request: NextRequest) {
81
return;
82
}
83
84
- const tinybird = yield* Effect.service(Tinybird);
+ // @ts-expect-error - Tinybird service can be yielded directly
85
+ const tinybird = yield* Tinybird;
86
yield* tinybird.appendEvents([
87
{
88
timestamp: timestamp.toISOString(),
0 commit comments