Skip to content

Commit

Permalink
ci: fix type issue in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
vignesh-gupta committed Jun 11, 2024
1 parent 1461a2d commit 06906e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/webhooks/clerk/utils/organization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function mapOrgJsonToOrg(orgJson: OrganizationJSON): Organization {
return {
clerkId: orgJson.id,
name: orgJson.name,
imageUrl: orgJson.image_url,
imageUrl: orgJson.image_url || "",
createdBy: orgJson.created_by,
};
}

0 comments on commit 06906e5

Please sign in to comment.