From 784352493232e7017dfa9b5a52b24b70d9b2723b Mon Sep 17 00:00:00 2001
From: Conrad Crawford <83192247+cnrad@users.noreply.github.com>
Date: Sat, 26 Feb 2022 15:16:52 -0500
Subject: [PATCH 1/3] change: "recorded" -> "current"
---
pages/index.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pages/index.tsx b/pages/index.tsx
index 75fd86e..791805c 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -73,7 +73,7 @@ export default function Home() {
- Lanyard Profile Readme has {userCount} recorded users!
+ Lanyard Profile Readme has {userCount} current users!
>
);
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 2/3] 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.`,
});
}
From 8ca5ab188c437d914312c97a257d62214a331142 Mon Sep 17 00:00:00 2001
From: Conrad Crawford <83192247+cnrad@users.noreply.github.com>
Date: Mon, 7 Mar 2022 15:28:25 -0500
Subject: [PATCH 3/3] change(index.tsx): "current" -> "total"
---
pages/index.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pages/index.tsx b/pages/index.tsx
index 791805c..974ff92 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -73,7 +73,7 @@ export default function Home() {
- Lanyard Profile Readme has {userCount} current users!
+ Lanyard Profile Readme has {userCount} total users!
>
);