Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/recalculate-all-points.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ async function recalculatePoints() {
// Fetch projects subcollection
const projectsRef = collection(db, 'members', uid, 'projects');
const projectsSnap = await getDocs(projectsRef);
let projectCount = projectsSnap.size;
const projectCount = projectsSnap.size;
let totalStars = 0;
projectsSnap.forEach((p) => {
totalStars += (p.data().stars || []).length;
Expand Down
4 changes: 2 additions & 2 deletions src/components/profile/UserProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,8 @@ export default function UserProfile() {
const users = await Promise.all(
uids.map(async (uid) => {
// Try members first
let docRef = doc(db, 'members', uid);
let snap = await getDoc(docRef);
const docRef = doc(db, 'members', uid);
const snap = await getDoc(docRef);

if (snap.exists()) {
return { uid: snap.id, ...snap.data() };
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/InteractiveBackground.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export default function InteractiveBackground() {

let animationFrameId: number;
let lines: TypeLine[] = [];
let logoAngle = 0;
const logoAngle = 0;
let frame = 0;

// Logo instances — scattered, slow spin, very subtle
Expand Down
Loading