We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1d5dc1 commit 6500950Copy full SHA for 6500950
packages/playground/website/src/components/github-private-repo-auth-modal/index.tsx
@@ -23,7 +23,7 @@ function extractRepoName(url: string): string {
23
}
24
25
// Extract owner/repo from GitHub URL
26
- const match = githubUrl.match(/github\.com\/([^\/]+\/[^\/]+)/);
+ const match = githubUrl.match(/github\.com\/([^/]+\/[^/]+)/);
27
return match ? match[1] : url;
28
} catch {
29
return url;
0 commit comments