Skip to content

Commit 4e7a3f5

Browse files
committed
Fix anonymous viewing not working
1 parent 8526d91 commit 4e7a3f5

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

src/browser/components/pr-review.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ export function PRReviewContent({
248248
};
249249

250250
fetchData();
251-
}, [github, owner, repo, number, track]);
251+
}, [github, owner, repo, number, track, githubReady]);
252252

253253
// Show loading while GitHub client initializes
254254
if (!githubReady) {

src/browser/components/welcome-dialog.tsx

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -861,31 +861,31 @@ function PRReviewAnimation() {
861861
// These are real, substantial PRs that showcase the review experience
862862
const FEATURED_PRS = [
863863
{
864-
owner: "facebook",
865-
repo: "react",
866-
number: 28271,
867-
title: "Add useFormStatus Hook",
868-
files: 38,
869-
additions: 1847,
870-
deletions: 89,
864+
owner: "ghostty-org",
865+
repo: "ghostty",
866+
number: 9803,
867+
title: "terminal/tmux: a lot more control mode parsing, functionality",
868+
files: 5,
869+
additions: 1563,
870+
deletions: 448,
871871
},
872872
{
873-
owner: "microsoft",
874-
repo: "TypeScript",
875-
number: 58243,
876-
title: "Implement config extends from npm packages",
877-
files: 52,
878-
additions: 2105,
879-
deletions: 312,
873+
owner: "oven-sh",
874+
repo: "bun",
875+
number: 25168,
876+
title: "feat(url): implement URLPattern API",
877+
files: 38,
878+
additions: 7339,
879+
deletions: 2,
880880
},
881881
{
882-
owner: "tailwindlabs",
883-
repo: "tailwindcss",
884-
number: 13092,
885-
title: "Add new @starting-style support",
886-
files: 18,
887-
additions: 892,
888-
deletions: 45,
882+
owner: "facebook",
883+
repo: "react",
884+
number: 35277,
885+
title: "Patch FlightReplyServer with fixes from ReactFlightClient",
886+
files: 9,
887+
additions: 712,
888+
deletions: 278,
889889
},
890890
];
891891

@@ -1101,8 +1101,8 @@ export function WelcomeDialog() {
11011101
</Button>
11021102

11031103
<p className="text-xs text-center text-muted-foreground">
1104-
Your token stays in your browser. All GitHub API calls are
1105-
made directly from your device.
1104+
All GitHub API calls are made directly from your device.
1105+
Pulldash does not store your GitHub token.
11061106
</p>
11071107

11081108
{/* Animation preview */}

0 commit comments

Comments
 (0)