Skip to content

update coderabbit logo#6203

Open
santoshyadavdev wants to merge 1 commit intoTanStack:alphafrom
santoshyadavdev:patch-1
Open

update coderabbit logo#6203
santoshyadavdev wants to merge 1 commit intoTanStack:alphafrom
santoshyadavdev:patch-1

Conversation

@santoshyadavdev
Copy link

@santoshyadavdev santoshyadavdev commented Mar 12, 2026

🎯 Changes

✅ Checklist

  • I have followed the steps in the Contributing guide.
  • I have tested this code locally with pnpm test:pr.

Summary by CodeRabbit

  • Documentation
    • Updated partner sponsor information with new URLs and refreshed branding assets in the project documentation.

@changeset-bot
Copy link

changeset-bot bot commented Mar 12, 2026

⚠️ No Changeset found

Latest commit: 0da089a

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Mar 12, 2026

📝 Walkthrough

Walkthrough

Updated sponsor blocks in README.md's Partners table. CodeRabbit block now references a new URL and updated image assets. Cloudflare block references updated image assets. Minor formatting and indentation adjustments applied.

Changes

Cohort / File(s) Summary
Sponsor Block Updates
README.md
Replaced CodeRabbit sponsor block with new via URL and updated dark/light image assets. Updated Cloudflare sponsor block with new dark/light image assets and reformatted HTML attributes and indentation.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Poem

🐰 A hop through sponsors, fresh and bright,
New logos gleaming in the light,
CodeRabbit hops with newfound cheer,
While Cloudflare appears crystal clear,
README polished, Partners so neat! ✨

🚥 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 PR title 'update coderabbit logo' directly aligns with the main change: updating CodeRabbit sponsor block assets/images in the README Partners table.
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 unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
📝 Coding Plan
  • Generate coding plan for human review comments

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.

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

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@README.md`:
- Line 68: Fix the malformed img tag by adding the missing opening quote for the
src attribute so the element becomes valid HTML; update the img element (the
<img ... /> shown in the diff) to use
src="https://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg" and verify the
rest of the attributes (height and alt) remain unchanged.
- Around line 64-78: The CodeRabbit light logo img tag is malformed: update the
<img> element that currently reads
src=https://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg" to include the
missing opening quote so it becomes
src="https://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg"; verify the
other <img> tags (Cloudflare and dark/light sources) use consistent quoted
src/srcset attributes and correct any similar quoting mistakes (look for the
CodeRabbit <img> element inside the <picture> block).

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 050d0e52-fbd8-478d-8a59-25f385989e6d

📥 Commits

Reviewing files that changed from the base of the PR and between 2a4533e and 0da089a.

📒 Files selected for processing (1)
  • README.md

Comment on lines +64 to +78
<a href="https://www.coderabbit.ai/?via=tanstack&dub_id=aCcEEdAOqqutX6OS" >
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://tanstack.com/assets/coderabbit-dark-D643Zkrv.svg" height="40" />
<source media="(prefers-color-scheme: light)" srcset="https://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg" height="40" />
<img src=https://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg" height="40" alt="CodeRabbit" />
</picture>
</a>
</td>
<td padding="20">
<a href="https://www.cloudflare.com?utm_source=tanstack">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://tanstack.com/assets/cloudflare-white-DQDB7UaL.svg" height="60" />
<source media="(prefers-color-scheme: light)" srcset="https://tanstack.com/assets/cloudflare-black-CPufaW0B.svg" height="60" />
<img src="https://tanstack.com/assets/cloudflare-black-CPufaW0B.svg" height="60" alt="Cloudflare" />
</picture>
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://tanstack.com/assets/cloudflare-white-Co-Tyjbl.svg" />
<source media="(prefers-color-scheme: light)" srcset="https://tanstack.com/assets/cloudflare-black-6Ojsn8yh.svg" />
<img src="https://tanstack.com/assets/cloudflare-white-Co-Tyjbl.svg" height="60" alt="Cloudflare" />
</picture>
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

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Verify that the new sponsor logo URLs return successful responses.

# Test CodeRabbit logo URLs
echo "Testing CodeRabbit logos..."
curl -I -s "https://tanstack.com/assets/coderabbit-dark-D643Zkrv.svg" | head -n 1
curl -I -s "https://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg" | head -n 1

# Test Cloudflare logo URLs
echo "Testing Cloudflare logos..."
curl -I -s "https://tanstack.com/assets/cloudflare-white-Co-Tyjbl.svg" | head -n 1
curl -I -s "https://tanstack.com/assets/cloudflare-black-6Ojsn8yh.svg" | head -n 1

Repository: TanStack/table

Length of output: 164


Fix malformed image attribute on line 70.

The CodeRabbit light logo img tag is missing the opening quote: <img src=https://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg" should be <img src="https://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg". All URLs are publicly accessible, but this syntax error will prevent the image from displaying.

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

In `@README.md` around lines 64 - 78, The CodeRabbit light logo img tag is
malformed: update the <img> element that currently reads
src=https://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg" to include the
missing opening quote so it becomes
src="https://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg"; verify the
other <img> tags (Cloudflare and dark/light sources) use consistent quoted
src/srcset attributes and correct any similar quoting mistakes (look for the
CodeRabbit <img> element inside the <picture> block).

<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://tanstack.com/assets/coderabbit-dark-D643Zkrv.svg" height="40" />
<source media="(prefers-color-scheme: light)" srcset="https://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg" height="40" />
<img src=https://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg" height="40" alt="CodeRabbit" />
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

Critical syntax error: Missing opening quote in src attribute.

The img element's src attribute is missing the opening quote, which will break HTML rendering.

🐛 Proposed fix
-          <img src=https://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg" height="40" alt="CodeRabbit" />
+          <img src="https://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg" height="40" alt="CodeRabbit" />
📝 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://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg" height="40" alt="CodeRabbit" />
<img src="https://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg" height="40" alt="CodeRabbit" />
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` at line 68, Fix the malformed img tag by adding the missing
opening quote for the src attribute so the element becomes valid HTML; update
the img element (the <img ... /> shown in the diff) to use
src="https://tanstack.com/assets/coderabbit-light-CIzGLYU_.svg" and verify the
rest of the attributes (height and alt) remain unchanged.

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