diff --git a/src/app/(auth)/onboarding/page.tsx b/src/app/(auth)/onboarding/page.tsx
index 283d56a..c2dc95e 100644
--- a/src/app/(auth)/onboarding/page.tsx
+++ b/src/app/(auth)/onboarding/page.tsx
@@ -221,7 +221,7 @@ export default function OnboardingPage() {
// Show loading while session hydrates or fetching user data
if (sessionStatus === 'loading' || userLoading || !initialized) {
return (
-
+
@@ -236,7 +236,7 @@ export default function OnboardingPage() {
}
return (
-
+
diff --git a/src/components/shared/expertise-select.tsx b/src/components/shared/expertise-select.tsx
index cc5a4f9..6c9166b 100644
--- a/src/components/shared/expertise-select.tsx
+++ b/src/components/shared/expertise-select.tsx
@@ -212,7 +212,7 @@ export function ExpertiseSelect({
{isExpanded && (
-
+
{categoryTags.map((tag) => {
const isSelected = value.includes(tag.name)
const isLocked = isTagLocked(tag.name)
@@ -261,7 +261,7 @@ export function ExpertiseSelect({
))}
-
{tag.name}
+
{tag.name}
)
})}