Skip to content

Commit 54773b4

Browse files
fix: GitHub buttons linking to wrong repo (#2008)
1 parent 37b75bb commit 54773b4

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pages/tools.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,7 @@ function GitHubButton({ href }: GitHubButtonProps) {
131131
backgroundColor: isDark ? darkColors.primaryDark : colors.primary,
132132
};
133133
return (
134-
<Button
135-
openInNewTab
136-
href="https://github.com/raycast/extensions/tree/main/extensions/react-native-directory"
137-
style={[styles.button, primaryButtonColorStyle]}>
134+
<Button openInNewTab href={href} style={[styles.button, primaryButtonColorStyle]}>
138135
<GitHub width={16} />
139136
<P style={styles.githubButtonLabel}>GitHub</P>
140137
</Button>

0 commit comments

Comments
 (0)