Skip to content

Commit

Permalink
Fix TS/lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ikusteu committed Jul 9, 2023
1 parent 0653983 commit 7ce5076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/functions/src/testData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export const createUser = functions

export const createDefaultUser = functions
.region(__functionsZone__)
.https.onCall(async ({ organization }: Pick<Payload, "organization">) => {
.https.onCall(async ({ organization }: { organization: string }) => {
const defaultEmail = "test@eisbuk.it";
const defaultPhone = "+3912345678";

Expand Down

0 comments on commit 7ce5076

Please sign in to comment.