Update BM Connect waitlist section

This commit is contained in:
User
2026-08-22 08:01:05 +02:00
parent f2e64d77f5
commit 3c1367ea51
21 changed files with 55 additions and 55 deletions
+3 -3
View File
@@ -155,7 +155,7 @@ export async function registerForWaitlist(
// Add entry to collection
const newEntryRef = await addDoc(entriesCollectionRef, {
email: data.email.trim().toLowerCase(),
fullName: data.fullName?.trim() || 'Software X Member',
fullName: data.fullName?.trim() || 'BM Connect Member',
tier: data.tier || 'Supporter',
investmentAmount: data.investmentAmount || 25,
position: assignedPosition,
@@ -167,7 +167,7 @@ export async function registerForWaitlist(
return {
id: newEntryRef.id,
email: data.email,
fullName: data.fullName || 'Software X Member',
fullName: data.fullName || 'BM Connect Member',
position: assignedPosition,
referralCode,
investmentAmount: data.investmentAmount || 25,
@@ -181,7 +181,7 @@ export async function registerForWaitlist(
return {
id: `local-${Date.now()}`,
email: data.email,
fullName: data.fullName || 'Software X Member',
fullName: data.fullName || 'BM Connect Member',
position: fallbackPosition,
referralCode: `SX-${Math.random().toString(36).substring(2, 7).toUpperCase()}`,
investmentAmount: data.investmentAmount || 25,