chore: Increase GitHub avatar resolution for better logo clarity#114
chore: Increase GitHub avatar resolution for better logo clarity#114gpailler merged 1 commit intoScoopInstaller:mainfrom
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
WalkthroughUpdated the NavBar component's brand Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
📝 Coding Plan
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. Comment |
There was a problem hiding this comment.
Actionable comments posted: 0
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
src/components/NavBar.tsx (1)
17-23: Use an absolute or imported asset path to avoid route-relative breakage.On nested routes (e.g.,
/apps),src="logo/scoop-bg.svg"can resolve to/apps/logo/...and 404. Prefer an absolute path (/logo/...) if it’s inpublic/, or import the SVG if it’s insrc/.✅ Proposed fix (public asset)
- src="logo/scoop-bg.svg" + src="/logo/scoop-bg.svg"✅ Proposed fix (imported asset)
+import scoopLogo from '../../logo/scoop-bg.svg'; ... - src="logo/scoop-bg.svg" + src={scoopLogo}
b746f26 to
c4c4b41
Compare
Motivation
The GitHub avatar appears blurry at 30x30 pixels.

Changes
Summary by CodeRabbit