From 702c40995d06ccb2c00cb9d500a74e8477c899f4 Mon Sep 17 00:00:00 2001 From: Rainier Michelena Date: Tue, 17 Oct 2023 08:50:06 -0500 Subject: [PATCH] fix: Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 72e616f..bc8c83c 100644 --- a/README.md +++ b/README.md @@ -157,7 +157,7 @@ notification.contents = { notification.headings = { en: "Gig'em Ags" } -const notification = await client.createNotification(notification); +const createdNotification = await client.createNotification(notification); ``` ### Creating a notification using Filters Sends a notification to your users filtered by specific criteria. @@ -186,7 +186,7 @@ notification.filters = [ }, ]; -const notification = await client.createNotification(notification); +const createdNotification = await client.createNotification(notification); ``` ### Canceling a notification