From 00525dbb926a1d5c9d0639221a2cc8cc50e7b94f Mon Sep 17 00:00:00 2001 From: Botik Lupa Date: Mon, 20 Jan 2025 11:46:54 +0100 Subject: [PATCH 1/2] Update index.tsx --- .../Basenames/UsernameProfileSectionBadges/Badges/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/components/Basenames/UsernameProfileSectionBadges/Badges/index.tsx b/apps/web/src/components/Basenames/UsernameProfileSectionBadges/Badges/index.tsx index a6d8a3cca3..f452cf1b9c 100644 --- a/apps/web/src/components/Basenames/UsernameProfileSectionBadges/Badges/index.tsx +++ b/apps/web/src/components/Basenames/UsernameProfileSectionBadges/Badges/index.tsx @@ -104,7 +104,7 @@ export const BADGE_INFO: Record< name: 'Base Learn Newcomer', title: 'Base Learn Newcomer', description: - 'You completed these Base Learn Modules: Basic Contracts, Storage, Control Structures, Arrays, Inheritance, Mappings, Structs, Error Triags, New Keyword, and Imports.', + 'You completed these Base Learn Modules: Basic Contracts, Storage, Control Structures, Arrays, Inheritance, Mappings, Structs, Error Flags, New Keyword, and Imports.', cta: 'Go to Base Learn', ctaLink: 'https://guild.xyz/base/base-learn', image: baseLearnNewcomer, From a304e1af821e3951519c5c37296c221d537aef6e Mon Sep 17 00:00:00 2001 From: Botik Lupa Date: Mon, 20 Jan 2025 11:49:41 +0100 Subject: [PATCH 2/2] Update useBuildathon.ts --- .../UsernameProfileSectionBadges/hooks/useBuildathon.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/components/Basenames/UsernameProfileSectionBadges/hooks/useBuildathon.ts b/apps/web/src/components/Basenames/UsernameProfileSectionBadges/hooks/useBuildathon.ts index 7123a57286..e6886415d9 100644 --- a/apps/web/src/components/Basenames/UsernameProfileSectionBadges/hooks/useBuildathon.ts +++ b/apps/web/src/components/Basenames/UsernameProfileSectionBadges/hooks/useBuildathon.ts @@ -18,6 +18,6 @@ export default function useBuildathonParticipant(address?: `0x${string}`): { }); if (!balanceOf) return { isParticipant: false, isWinner: false }; - // winners will have both a particpant SBT and a winner SBT + // winners will have both a participant SBT and a winner SBT return { isParticipant: balanceOf > 0, isWinner: balanceOf > 1 }; }