From 46f8389a3d6d93ac69c0ab6015aad6f772b23d84 Mon Sep 17 00:00:00 2001 From: Conrad Crawford <83192247+cnrad@users.noreply.github.com> Date: Sat, 5 Mar 2022 13:16:24 -0500 Subject: [PATCH] update twitter handle in error message --- pages/api/[...id].ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/api/[...id].ts b/pages/api/[...id].ts index 6019f0e..84d919a 100644 --- a/pages/api/[...id].ts +++ b/pages/api/[...id].ts @@ -37,7 +37,7 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse< console.log(error); // Only console log the error if its not a 404 return res.status(400).send({ - error: `Something went wrong! If everything looks correct and this still occurs, please contact @atcnrad on Twitter.`, + error: `Something went wrong! If everything looks correct and this still occurs, please contact @notcnrad on Twitter.`, }); }