Skip to content

update coderabbit logo#6203

Open
santoshyadavdev wants to merge 3 commits intoTanStack:alphafrom
santoshyadavdev:patch-1
Open

update coderabbit logo#6203
santoshyadavdev wants to merge 3 commits 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 entries with refreshed branding assets and new image sources for improved visual consistency.
    • Cleaned up markup spacing and formatting within sponsor blocks; corrected malformed image attributes to ensure reliable display.
    • No functional or behavioral changes—these are content and presentation updates only.

@changeset-bot
Copy link

changeset-bot bot commented Mar 12, 2026

⚠️ No Changeset found

Latest commit: 9480157

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 README sponsor markup: replaced several sponsor image URLs (dark/light variants), corrected an img attribute, and adjusted HTML spacing/indentation. No code or behavior changes.

Changes

Cohort / File(s) Summary
Sponsor HTML / README
README.md
Replaced/updated dark and light image asset URLs for CodeRabbit, Cloudflare, and AG Grid; fixed a malformed img attribute (quoting); minor HTML indentation and whitespace adjustments.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Poem

🐰 I nibbled through README lines tonight,
Swapped logos for dark and light,
Fixed a quote, made spacing neat,
Partners now look crisp and fleet,
A tiny hop — the file feels right.

🚥 Pre-merge checks | ✅ 2 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Title check ⚠️ Warning The PR title 'update coderabbit logo' refers to only one of multiple sponsor logo updates; the actual changes include updates to coderabbit, Cloudflare, and AG Grid logos/assets. Revise the title to reflect all changes, such as 'update sponsor logos and assets' or 'update partner logos in README', to accurately represent the full scope of the changeset.
✅ Passed checks (2 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
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

@santoshyadavdev
Copy link
Author

I am not able to find ag-grid logo its an svg
Screenshot 2026-03-13 at 21 51 23

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: 1

🤖 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`:
- Around line 84-86: The fallback <img> currently points to the legacy GitHub
URL while the <source> tags use TanStack-hosted assets; update the <img> tag's
src to the matching TanStack asset (same base as the srcset URLs, e.g.,
tanstack.com/assets/ag-grid-*.svg) so environments that use the fallback display
the same logo as the <source> variants and keep the height/alt attributes (refer
to the existing <source> tags and the <img> element to locate the change).

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: f18caad1-d9f8-43aa-b3ef-773bf0e28aab

📥 Commits

Reviewing files that changed from the base of the PR and between 738095f and 9480157.

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

Comment on lines +84 to 86
<source media="(prefers-color-scheme: dark)" srcset="https://tanstack.com/assets/ag-grid-dark.svg" height="40" />
<source media="(prefers-color-scheme: light)" srcset="https://tanstack.com/assets/ag-grid-light.svg" height="40" />
<img src="https://raw.githubusercontent.com/tannerlinsley/files/master/partners/ag-grid.svg" height="60" alt="AG Grid" />
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 | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify picture/img host consistency for AG Grid block in README.md
rg -n -A4 -B2 'ag-grid-(dark|light)\.svg|partners/ag-grid\.svg' README.md

Repository: TanStack/table

Length of output: 686


Align AG Grid fallback image with the new asset sources.

The <source> tags reference TanStack-hosted assets (tanstack.com/assets/ag-grid-*.svg), but the fallback <img> still points to a legacy GitHub URL. Fallback-only environments will display a different logo.

Suggested fix
-        <img src="https://raw.githubusercontent.com/tannerlinsley/files/master/partners/ag-grid.svg" height="60" alt="AG Grid" />
+        <img src="https://tanstack.com/assets/ag-grid-light.svg" height="60" alt="AG Grid" />
📝 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
<source media="(prefers-color-scheme: dark)" srcset="https://tanstack.com/assets/ag-grid-dark.svg" height="40" />
<source media="(prefers-color-scheme: light)" srcset="https://tanstack.com/assets/ag-grid-light.svg" height="40" />
<img src="https://raw.githubusercontent.com/tannerlinsley/files/master/partners/ag-grid.svg" height="60" alt="AG Grid" />
<source media="(prefers-color-scheme: dark)" srcset="https://tanstack.com/assets/ag-grid-dark.svg" height="40" />
<source media="(prefers-color-scheme: light)" srcset="https://tanstack.com/assets/ag-grid-light.svg" height="40" />
<img src="https://tanstack.com/assets/ag-grid-light.svg" height="60" alt="AG Grid" />
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` around lines 84 - 86, The fallback <img> currently points to the
legacy GitHub URL while the <source> tags use TanStack-hosted assets; update the
<img> tag's src to the matching TanStack asset (same base as the srcset URLs,
e.g., tanstack.com/assets/ag-grid-*.svg) so environments that use the fallback
display the same logo as the <source> variants and keep the height/alt
attributes (refer to the existing <source> tags and the <img> element to locate
the change).

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