diff --git a/frontend/frontend/src/components/Home/TextSection.js b/frontend/frontend/src/components/Home/TextSection.js
index 8da2c098..f1fa7220 100644
--- a/frontend/frontend/src/components/Home/TextSection.js
+++ b/frontend/frontend/src/components/Home/TextSection.js
@@ -38,7 +38,7 @@ const TextSection = ({
{
fullSuffix += `username=${userId}`;
break;
case CardTypes.PIN:
+ fullSuffix += `username=${userId}`;
fullSuffix += `repo=${repo}`;
break;
case CardTypes.GIST:
diff --git a/frontend/frontend/src/pages/Home/stages/Customize.js b/frontend/frontend/src/pages/Home/stages/Customize.js
index 033c78d3..c6a9b1e1 100644
--- a/frontend/frontend/src/pages/Home/stages/Customize.js
+++ b/frontend/frontend/src/pages/Home/stages/Customize.js
@@ -102,12 +102,12 @@ const CustomizeStage = ({
{!isAuthenticated && (
<>
- Please
+ Please{' '}
{
e.preventDefault();
- setStage(1);
+ setStage(0);
}}
className="underline text-blue-900"
>
@@ -134,7 +134,7 @@ const CustomizeStage = ({
title="WakaTime Username"
description={
<>
- Set your
+ Set your{' '}
{' '}
username to fetch your stats.
>
- } // TODO: make link visible
+ }
placeholder={`e.g. "${DEMO_WAKATIME_USER}"`}
value={wakatimeUser}
setValue={setWakatimeUser}