Skip to content
Open
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Please go through and strictly follow the [Onboarding Guide](https://github.com/

| Explore Story (Amber) | Theme Screen (Vintage) | Upcoming Room Screen (Cream) |
| :---------------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------- |
| <img src="https://github.com/user-attachments/assets/ba7da784-48a6-4512-a4c8-9f12b8ad13c1" width="250" height="auto" /> | <img src="https://github.com/user-attachments/assets/ba9273f2-ceef-441d-8f94-4e0bc53b3e99" width="250" height="auto" /> | <img src="https://github.com/user-attachments/assets/a46c7da4-2df4-4c62-9e4c-9c92102339e9" width="250" height="auto"/> |
| <img src="https://github.com/user-attachments/assets/ba7da784-48a6-4512-a4c8-9f12b8ad13c1" width="250" height="auto" /> | <img src="docs/store_listing/images/playstore_screenshots/8.png" width="250" height="auto" /> | <img src="https://github.com/user-attachments/assets/a46c7da4-2df4-4c62-9e4c-9c92102339e9" width="250" height="auto"/> |

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Add alt text to images in this row (accessibility/lint).

At Line 91, the <img> tags are missing alt attributes, which triggers MD045 and reduces accessibility for screen readers.

✅ Suggested patch
-| <img src="https://github.com/user-attachments/assets/ba7da784-48a6-4512-a4c8-9f12b8ad13c1" width="250" height="auto" /> | <img src="docs/store_listing/images/playstore_screenshots/8.png" width="250" height="auto" />                           | <img src="https://github.com/user-attachments/assets/a46c7da4-2df4-4c62-9e4c-9c92102339e9" width="250" height="auto"/> |
+| <img src="https://github.com/user-attachments/assets/ba7da784-48a6-4512-a4c8-9f12b8ad13c1" alt="Explore Story screen in Amber theme" width="250" height="auto" /> | <img src="docs/store_listing/images/playstore_screenshots/8.png" alt="Theme screen in Vintage theme" width="250" height="auto" /> | <img src="https://github.com/user-attachments/assets/a46c7da4-2df4-4c62-9e4c-9c92102339e9" alt="Upcoming Room screen in Cream theme" width="250" height="auto" /> |
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
| <img src="https://github.com/user-attachments/assets/ba7da784-48a6-4512-a4c8-9f12b8ad13c1" width="250" height="auto" /> | <img src="docs/store_listing/images/playstore_screenshots/8.png" width="250" height="auto" /> | <img src="https://github.com/user-attachments/assets/a46c7da4-2df4-4c62-9e4c-9c92102339e9" width="250" height="auto"/> |
| <img src="https://github.com/user-attachments/assets/ba7da784-48a6-4512-a4c8-9f12b8ad13c1" alt="Explore Story screen in Amber theme" width="250" height="auto" /> | <img src="docs/store_listing/images/playstore_screenshots/8.png" alt="Theme screen in Vintage theme" width="250" height="auto" /> | <img src="https://github.com/user-attachments/assets/a46c7da4-2df4-4c62-9e4c-9c92102339e9" alt="Upcoming Room screen in Cream theme" width="250" height="auto" /> |
🧰 Tools
🪛 markdownlint-cli2 (0.21.0)

[warning] 91-91: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 91-91: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 91-91: Images should have alternate text (alt text)

(MD045, no-alt-text)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` at line 91, The three <img> tags in the README row (the elements
with src values
"https://github.com/user-attachments/assets/ba7da784-48a6-4512-a4c-9f12b8ad13c1",
"docs/store_listing/images/playstore_screenshots/8.png", and
"https://github.com/user-attachments/assets/a46c7da4-2df4-4c62-9e4c-9c92102339e9")
are missing alt attributes; add meaningful alt text for each image (e.g., brief
descriptions of the screenshot or graphic) by adding alt="..." to each <img> tag
so the row satisfies MD045 and improves accessibility.


</div>

Expand Down