Skip to content

Commit a23d51a

Browse files
fix: bury something else resets form instead of retrying same URL
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent e5f1b5f commit a23d51a

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

ROADMAP.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ Living document. Completed work at the top, upcoming at the bottom. Add new entr
4343
- OG image aligned with live hero (light theme, correct fonts)
4444
- Custom roast line for commitmentissues repo itself
4545

46+
### Bug fixes
47+
- Fixed "bury something else →" on error screen — was retrying same broken URL instead of resetting to the form
48+
4649
### Data integrity
4750
- Audited all 28 Famous Casualties graveyard entries against live GitHub API
4851
- Fixed `angularjs/angular.js``angular/angular.js` (org transferred, old path 404)

src/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export default function Page() {
118118
)}
119119

120120
{loading && <LoadingState />}
121-
{error && !loading && <ErrorDisplay error={error} onRetry={() => analyze(url)} />}
121+
{error && !loading && <ErrorDisplay error={error} onRetry={reset} />}
122122

123123
<SiteFooter compact={idle} />
124124
</div>

0 commit comments

Comments
 (0)