Skip to content

Commit

Permalink
Fix: Non-existant variable being passed to Posthog
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHougaard committed Mar 6, 2024
1 parent d8ceb7a commit 373fbd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/server/routes/v2/project-router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export const registerProjectRouter = async (server: FastifyZodProvider) => {
event: PostHogEventTypes.ProjectCreated,
distinctId: getTelemetryDistinctId(req),
properties: {
orgId: req.body.organizationId,
orgId: project.orgId,
name: project.name,
...req.auditLogInfo
}
Expand Down

0 comments on commit 373fbd5

Please sign in to comment.