-
Notifications
You must be signed in to change notification settings - Fork 110
Update contribution links to include public view and invitation #585
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
4e7793b
fc082a0
e5fb599
b742d14
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -58,9 +58,9 @@ | |||||
"vanilla-tilt": "^1.8.1" | ||||||
}, | ||||||
"devDependencies": { | ||||||
"@docusaurus/module-type-aliases": "^3.9.1", | ||||||
"@docusaurus/module-type-aliases": "3.9.1", | ||||||
"@docusaurus/tsconfig": "^3.9.1", | ||||||
"@docusaurus/types": "^3.9.1", | ||||||
"@docusaurus/types": "3.9.1", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removing the caret (^) prefix pins these dependencies to exact versions. This prevents automatic minor/patch updates and may cause version conflicts with other dependencies that expect compatible ranges. Consider keeping the caret prefix unless there's a specific reason to pin these exact versions.
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||
"@tailwindcss/postcss": "^4.1.4", | ||||||
"@types/canvas-confetti": "^1.9.0", | ||||||
"@types/react": "^19.1.9", | ||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,8 +33,8 @@ const contributionSections: ContributionSection[] = [ | |
'Read about how to propose new features, collaborate on pull requests, and review peer code.' | ||
], | ||
links: [ | ||
{ text: 'GitHub', url: 'https://github.com/recodehive' }, | ||
{ text: 'GitLab', url: 'https://gitlab.com' } | ||
{ text: 'GitHub', url: 'https://github.com/recodehive?view_as=public' }, | ||
{ text: 'Join our organization', url: 'https://github.com/recodehive/Support/issues/new?assignees=&labels=invite+me+to+the+community&projects=&template=invitation.yml&title=Please+invite+me+to+the+Recode-Hive+GitHub+Community+Organization' } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The URL string is extremely long and reduces code readability. Consider extracting it to a constant or breaking it into multiple lines for better maintainability. Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||
], | ||
color: '#8b5cf6' | ||
}, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
hooks.onBrokenMarkdownLinks
configuration is duplicated - it appears both at lines 29-30 and 255-256. This duplication could cause configuration conflicts and should be consolidated into a single location.Copilot uses AI. Check for mistakes.