From 8f42872132ee4ebf62079b19de578d009175ac7e Mon Sep 17 00:00:00 2001 From: Miodec Date: Wed, 12 Apr 2023 00:44:37 +0200 Subject: [PATCH 1/2] increased line height --- frontend/src/styles/profile.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/styles/profile.scss b/frontend/src/styles/profile.scss index a8c5f0cd4..7b05855bc 100644 --- a/frontend/src/styles/profile.scss +++ b/frontend/src/styles/profile.scss @@ -247,7 +247,7 @@ align-items: center; .value { font-size: 2rem; - line-height: 1.9rem; + line-height: 2rem; } } } @@ -258,7 +258,7 @@ .typingStats { .value { font-size: 1.5rem; - line-height: 1.3rem; + line-height: 1.5rem; } } } @@ -272,7 +272,7 @@ align-items: center; .value { font-size: 2rem; - line-height: 1.9rem; + line-height: 2rem; } } } @@ -283,7 +283,7 @@ .typingStats { .value { font-size: 1.5rem; - line-height: 1.3rem; + line-height: 1.5rem; } } .bio, From 26a876938e8b60bac64942d982343b6999e119ac Mon Sep 17 00:00:00 2001 From: Miodec Date: Wed, 12 Apr 2023 16:26:45 +0200 Subject: [PATCH 2/2] i am stupid --- backend/src/api/controllers/user.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/api/controllers/user.ts b/backend/src/api/controllers/user.ts index 525836f4d..259df4221 100644 --- a/backend/src/api/controllers/user.ts +++ b/backend/src/api/controllers/user.ts @@ -66,7 +66,7 @@ export async function sendVerificationEmail( const isVerified = ( await admin .auth() - .getUser("uid") + .getUser(uid) .catch((e) => { throw new MonkeyError( 500, // this should never happen, but it does. it mightve been caused by auth token cache, will see if disabling cache fixes it