From 8e02c053324c27c96691e2cdd812904d358c5ce6 Mon Sep 17 00:00:00 2001 From: talksik Date: Wed, 1 Jun 2022 20:57:47 -0500 Subject: [PATCH] Update index.ts --- packages/firebase/functions/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/firebase/functions/src/index.ts b/packages/firebase/functions/src/index.ts index a16f9bd..7108b24 100644 --- a/packages/firebase/functions/src/index.ts +++ b/packages/firebase/functions/src/index.ts @@ -37,7 +37,7 @@ export const getStreamToken = functions.https.onCall((data, context) => { // Create an access token which we will sign and return to the client, // containing the grant we just created const token = new AccessToken(twilioAccountSid, twilioApiKey, twilioApiSecret, { - identity: identity, + identity, }); token.addGrant(videoGrant);