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
1 change: 0 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/pages/hall-of-fame.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const SPECIAL_CONTRIBUTORS = {
FOUNDING: ['h3xxit', 'AndreiGS', 'edujuan', 'aliraza1006', 'ulughbeck'] as readonly string[],
ADMINS: ['h3xxit', 'aliraza1006', 'edujuan', 'ulughbeck', 'AndreiGS'] as readonly string[],
LEAD_DEVELOPER: 'Raezil',
OPEN_TO_WORK: ['raezil'] as readonly string[], // Only people who have explicitly told us they're open to work (Kamil Mosciszko = Raezil)
} as const;

// Simple tooltip component with dynamic positioning to prevent edge cutoff
Expand Down Expand Up @@ -237,7 +238,7 @@ const transformContributor = (ghContributor: GitHubContributor): DisplayContribu
topContribution,
recentActivity,
qualityMetrics,
lookingForJob: ghContributor?.hireable || false,
lookingForJob: SPECIAL_CONTRIBUTORS.OPEN_TO_WORK.includes(login.toLowerCase()),
repositories,
total_recent_commits,
// Enhanced line change statistics
Expand Down
Loading