Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/libraries/maintainers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,19 @@ export const allMaintainers: Maintainer[] = [
website: 'https://www.linkedin.com/in/jonghyeonko',
},
},
{
name: 'Wonsuk Choi',
avatar: 'https://github.com/sukvvon.png',
github: 'sukvvon',
maintainerOf: ['query'],
frameworkExpertise: ['react'],
specialties: ['TypeScript', 'Test'],
social: {
linkedIn: 'https://www.linkedin.com/in/sukvvon',
twitter: 'https://x.com/sukvvon',
bluesky: 'https://bsky.app/profile/sukvvon.bsky.social',
},
},
Comment on lines +290 to +302
Copy link

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
# Description: Verify that all URLs in the new maintainer entry are accessible

echo "Checking GitHub profile and avatar..."
curl -sI "https://github.com/sukvvon" | head -n 1
curl -sI "https://github.com/sukvvon.png" | head -n 1

echo -e "\nChecking social media links..."
curl -sI "https://www.linkedin.com/in/sukvvon" | head -n 1
curl -sI "https://x.com/sukvvon" | head -n 1
curl -sI "https://bsky.app/profile/sukvvon.bsky.social" | head -n 1

Repository: TanStack/tanstack.com

Length of output: 198


Verify and fix social media links in the maintainer entry.

The code structure is correct and follows the established pattern, but URL verification revealed issues with the social media links:

  • Bluesky URL returns 404: https://bsky.app/profile/sukvvon.bsky.social does not exist. Please verify the correct Bluesky profile URL.
  • X.com URL returns 403: https://x.com/sukvvon is blocked/forbidden. Please verify this URL is correct.
  • LinkedIn URL returns 999: https://www.linkedin.com/in/sukvvon returned an access-denied response. Please verify this URL is accessible.
  • Avatar URL returns 302: https://github.com/sukvvon.png redirects instead of serving directly. This may work but should be confirmed as the intended format.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@src/libraries/maintainers.ts` around lines 290 - 302, The social links for
the maintainer entry with name 'Wonsuk Choi' need correction: verify and replace
the values in the social object (linkedIn, twitter, bluesky) with the correct,
accessible profile URLs or remove a field if the account does not exist; also
confirm whether the avatar value 'https://github.com/sukvvon.png' should remain
(it currently redirects) and replace it with a direct image URL if a
non-redirecting avatar is required. Locate the maintainer object (name: 'Wonsuk
Choi') in src/libraries/maintainers.ts and update social.linkedIn,
social.twitter, social.bluesky and avatar accordingly so each URL returns a 200
and matches the intended profile.

{
name: 'Sarah Gerrard',
avatar: 'https://github.com/ladybluenotes.png',
Expand Down