We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab01a21 commit 345749eCopy full SHA for 345749e
1 file changed
src/components/dashboard/registrations.jsx
@@ -45,6 +45,8 @@ const RegistrationChart = ({ round, ghostLegion }) => {
45
const universityMap = new Map();
46
47
registrationInfo?.university_counts?.forEach((university) => {
48
+ if (!university.name) return; // Skip entries with null or undefined names
49
+
50
const normalizedName = university.name.toLowerCase();
51
if (universityMap.has(normalizedName)) {
52
const existing = universityMap.get(normalizedName);
0 commit comments