From 195532848a5c7dfca833b35a6deb6cbab2ee4fc9 Mon Sep 17 00:00:00 2001 From: akshat Date: Mon, 3 Aug 2026 23:19:09 +0530 Subject: [PATCH] fix: add leading slash to react-developer-tools link in setup guide The link was missing the leading slash, making it a relative path that wouldn't resolve correctly. Changed from 'learn/...' to '/learn/...' for consistency with other links in the document. --- src/content/learn/setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/learn/setup.md b/src/content/learn/setup.md index 2c46ee1485d..b93155cc1ca 100644 --- a/src/content/learn/setup.md +++ b/src/content/learn/setup.md @@ -17,7 +17,7 @@ TypeScript is a popular way to add type definitions to JavaScript codebases. [Le ## React Developer Tools {/*react-developer-tools*/} -React Developer Tools is a browser extension that can inspect React components, edit props and state, and identify performance problems. Learn how to install it [here](learn/react-developer-tools). +React Developer Tools is a browser extension that can inspect React components, edit props and state, and identify performance problems. Learn how to install it [here](/learn/react-developer-tools). ## React Compiler {/*react-compiler*/}