AntFleet

Disagreement · 70b30f32-openai-1

Internal navigation uses raw <a> instead of next/link, causing full page reloads

solo GPT-5
repo e24ef98c·PR #8·reviewed 1 week ago

GPT-5 finding

Internal navigation uses raw <a> instead of next/link, causing full page reloads

lowperformancehigh
  • apps/web/app/layout.tsx:44-62
  • apps/web/app/layout.tsx:75-98
Using <a href> for internal routes in a Next.js App Router project bypasses client-side navigation and triggers full document reloads, degrading performance and UX (lost state, slower transitions).

Recommendation

Replace internal anchors with next/link's <Link href="/path"> to enable client-side routing. Keep <a> for external links (with rel+target).

Other reviewer

The other reviewer flagged nothing in this file/line range.

Why this didn't post

This finding didn't meet AntFleet's unanimous agreement threshold. Both frontier models review every PR independently; only findings they both flag with the same severity and category are posted to the PR. This one fell through.

read the methodology →