From 30f871f44722c4df550f76bb827226911aef22ca Mon Sep 17 00:00:00 2001 From: Pagebakers Date: Wed, 8 Nov 2023 09:53:33 +0100 Subject: [PATCH] chore: update faq --- apps/website/src/components/faq/faq.tsx | 4 ++-- apps/website/src/pages/api/figma-signup.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/website/src/components/faq/faq.tsx b/apps/website/src/components/faq/faq.tsx index c9c20b63a..89c7f318c 100644 --- a/apps/website/src/components/faq/faq.tsx +++ b/apps/website/src/components/faq/faq.tsx @@ -54,8 +54,8 @@ export const Faq = () => { <> We'll add new components and improvements to the library as we get new ideas and feedback, you will receive these updates - during the first year. After that you can renew your license for a - reduced fee. + during the first year. After that you can renew your license if + you want to keep receiving updates.

We might release different stacks, for example for Vue and diff --git a/apps/website/src/pages/api/figma-signup.ts b/apps/website/src/pages/api/figma-signup.ts index df61f0b20..b1e45c7e9 100644 --- a/apps/website/src/pages/api/figma-signup.ts +++ b/apps/website/src/pages/api/figma-signup.ts @@ -31,7 +31,7 @@ const handler = async (req: NextApiRequest, res: NextApiResponse) => { const json = await response.json() if (json.success) { - sendDiscordNotification({ name, email }) + await sendDiscordNotification({ name, email }) } res.status(200).json({ success: !!json.success })