Skip to content

Conversation

@SangeetaMishr
Copy link
Collaborator

@SangeetaMishr SangeetaMishr commented Dec 4, 2025

changed the form link and image.

Summary by CodeRabbit

  • Documentation
    • Updated WhatsApp Groups Automation onboarding docs to show metadata (read time, difficulty, last updated) and improved formatting.
    • Simplified onboarding Step 2 to a generic onboarding-form link with references to external documentation.
    • Removed explicit API/form field instructions and the associated screenshot; minor spacing/formatting tweaks.

✏️ Tip: You can customize this high-level summary in your review settings.

changed the form link and image.
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 4, 2025

Walkthrough

Updates the WhatsApp Groups Automation onboarding document: replaces a plain "Beginner" badge with an HTML metadata header (read time, level, last updated), adds a blank line after the "Set-up" heading, and simplifies Step 2 to reference an onboarding form link and external documentation instead of listing App Name/API key fields.

Changes

Cohort / File(s) Summary
Documentation Metadata & Onboarding Content
docs/6. WhatsApp Groups Automation/Onboarding for new NGOs.md
Replaced textual "Beginner" badge with an HTML table header showing "5 minutes read", "Level: Beginner", and "Last Updated: December 2025". Added a blank line after the "Set-up" heading. Reworked Step 2 to remove explicit App Name and Gupshup API key fields and screenshot; now instructs that the onboarding form link will be provided and points to external documentation.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

  • Single documentation file; changes are formatting and content simplification.
  • Reviewers should verify the metadata HTML renders correctly and the external documentation link is accurate.

Suggested reviewers

  • mahajantejas

Poem

🐰 I hopped through lines and polished a page,
Swapped a badge for a header—neater stage.
Step Two now points where the answers hide,
A tidy path for onboarding's stride. 🥕✨

Pre-merge checks and finishing touches

✅ 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 accurately reflects the main change—updating the onboarding documentation file for new NGOs with revised form links and images.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch Onboarding-for-new-NGOs.md

📜 Recent review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between b9d0689 and bd74719.

📒 Files selected for processing (1)
  • docs/6. WhatsApp Groups Automation/Onboarding for new NGOs.md (3 hunks)
🔇 Additional comments (3)
docs/6. WhatsApp Groups Automation/Onboarding for new NGOs.md (3)

35-35: Link text spacing fixed (MD039).

Line 35 now correctly removes the extraneous space in the link text: [documentation] instead of [documentation ]. Linting issue resolved.


21-21: Blank line improves readability.

The blank line added after the "Set-up" heading (Line 21) enhances document structure and readability.


33-37: Step 2 content simplification aligns with PR objectives.

The refactored Step 2 now provides a cleaner onboarding flow by pointing to external documentation rather than listing explicit form fields. This change simplifies the user experience and aligns with the PR objective of updating the onboarding form guidance.


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.

@github-actions
Copy link

github-actions bot commented Dec 4, 2025

@github-actions github-actions bot temporarily deployed to pull request December 4, 2025 12:23 Inactive
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 2

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between dd87519 and b9d0689.

📒 Files selected for processing (1)
  • docs/6. WhatsApp Groups Automation/Onboarding for new NGOs.md (3 hunks)
🧰 Additional context used
🪛 markdownlint-cli2 (0.18.1)
docs/6. WhatsApp Groups Automation/Onboarding for new NGOs.md

35-35: Spaces inside link text

(MD039, no-space-in-links)

🔇 Additional comments (1)
docs/6. WhatsApp Groups Automation/Onboarding for new NGOs.md (1)

20-21: Visual separation improvement.

The blank line after the heading improves document readability.

Comment on lines +1 to +9
<h4>
<table>
<tr>
<td><b>5 minutes read</b></td>
<td style={{ paddingLeft: '40px' }}><b>Level: Beginner</b></td>
<td style={{ paddingLeft: '40px' }}><b>Last Updated: December 2025</b></td>
</tr>
</table>
</h4>
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical

Replace JSX syntax with standard HTML style attributes.

Lines 5 and 6 use JSX object notation (style={{ paddingLeft: '40px' }}), which is not valid in markdown files. This will render as literal text instead of applying the intended styling. Use standard HTML syntax instead.

Apply this diff to fix the inline styles:

 <h4>
  <table>
   <tr>
     <td><b>5 minutes read</b></td>
-    <td style={{ paddingLeft: '40px' }}><b>Level: Beginner</b></td>
-    <td style={{ paddingLeft: '40px' }}><b>Last Updated: December 2025</b></td>
+    <td style="padding-left: 40px;"><b>Level: Beginner</b></td>
+    <td style="padding-left: 40px;"><b>Last Updated: December 2025</b></td>
   </tr>
  </table>
 </h4>
📝 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
<h4>
<table>
<tr>
<td><b>5 minutes read</b></td>
<td style={{ paddingLeft: '40px' }}><b>Level: Beginner</b></td>
<td style={{ paddingLeft: '40px' }}><b>Last Updated: December 2025</b></td>
</tr>
</table>
</h4>
<h4>
<table>
<tr>
<td><b>5 minutes read</b></td>
<td style="padding-left: 40px;"><b>Level: Beginner</b></td>
<td style="padding-left: 40px;"><b>Last Updated: December 2025</b></td>
</tr>
</table>
</h4>
🤖 Prompt for AI Agents
In docs/6. WhatsApp Groups Automation/Onboarding for new NGOs.md around lines 1
to 9, the table cells use JSX-style inline styles (style={{ paddingLeft: '40px'
}}) which is invalid in Markdown/HTML; replace those with standard HTML
attributes using CSS syntax (e.g., style="padding-left: 40px;") on the <td>
elements so the padding is applied correctly and the JSX braces and double
braces are removed.

Copy link
Contributor

@tanuprasad530 tanuprasad530 left a comment

Choose a reason for hiding this comment

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

Extra character in the word "documentation" that directs to the link. This can cause the hyperlink viewing to fail.

Please delete the extra character.

removed the extra space
@github-actions github-actions bot temporarily deployed to pull request December 4, 2025 13:09 Inactive
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.

3 participants