Skip to content

Conversation

@GuraaseesSingh
Copy link

@GuraaseesSingh GuraaseesSingh commented Feb 9, 2026

What changed

  • Fixed incorrect project description text on the /projects page
  • Updated image alt attributes to use project.name instead of rendering as undefined

Fix 1: Typo correction in project description

Before

“With the adevent of Internet”

image

After

“With the advent of the Internet”

image

Fix 2: Capitalization improvement

Before

“a decentralised platform for secure and private messaging”

image

After

“A decentralised platform for secure and private messaging”

image

Why this change

While inspecting the Projects page, image alt text was rendering as undefined due to an incorrect property reference.

Switching from project.title to project.name ensures:

  • Correct and meaningful alt text
  • Improved accessibility
  • Cleaner DOM output
image

Verification

  • Inspected rendered project cards using browser DevTools
  • Confirmed image alt attributes now correctly reflect project names
  • Verified visual and text changes using screenshots attached

Summary by CodeRabbit

Release Notes

  • Bug Fixes
    • Corrected spelling and capitalization in project descriptions
    • Improved image accessibility with updated alternative text

@vercel
Copy link

vercel bot commented Feb 9, 2026

@GuraaseesSingh is attempting to deploy a commit to the AOSSIE Team on Vercel.

A member of the Team first needs to authorize it.

@coderabbitai
Copy link

coderabbitai bot commented Feb 9, 2026

📝 Walkthrough

Walkthrough

This pull request updates project metadata and description text. Changes include fixing typos in project descriptions (correcting "adevent" to "advent"), improving capitalization and grammar, and updating image alt text to reference project name instead of title.

Changes

Cohort / File(s) Summary
Project Descriptions
src/helper/projects.js
Fixed typo ("adevent" → "advent"), improved capitalization of "Internet", and added comma for grammatical correctness in project descriptions; capitalized OpenChat description.
Image Rendering
src/pages/projects.jsx
Updated alt text attribute to use project.name instead of project.title for improved semantic accuracy in image markup.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Poem

🐰 A typo here, a name swap there,
Our projects shine with proper care!
"Advent" greets the Internet bright,
While alt text flows just right. ✨

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'Fix project descriptions and image alt text' directly and accurately summarizes the main changes: correcting project description text (typo and capitalization) and updating image alt attributes.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

No actionable comments were generated in the recent review. 🎉

🧹 Recent nitpick comments
src/pages/projects.jsx (1)

50-51: Good fix on alt text; minor trailing space in src.

The project.name change correctly resolves the undefined alt text — nice accessibility improvement. However, Line 50 has a stray trailing space inside the JSX expression ({project.logo }). It's functionally harmless but looks accidental.

🧹 Remove trailing space
-                src={project.logo }
+                src={project.logo}

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant