From 9de35986c6221c63d51718624a0c08c1898f2edb Mon Sep 17 00:00:00 2001 From: SailorStat <77109932+SailorStat@users.noreply.github.com> Date: Wed, 1 Oct 2025 13:59:51 +0300 Subject: [PATCH 1/3] fix(docs): correct unclosed Route tag in JSX example Fix unclosed JSX tag in Route component example. The Route component was missing the closing `/` which is required in JSX syntax. --- docs/api/components/Routes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/components/Routes.md b/docs/api/components/Routes.md index 4fa2c28c9e..d7ff15ff39 100644 --- a/docs/api/components/Routes.md +++ b/docs/api/components/Routes.md @@ -33,7 +33,7 @@ import { Route, Routes } from "react-router"; } /> } /> - }> + } /> ``` From c06806ed9ab602a6d83346141064e5f35c02a3e2 Mon Sep 17 00:00:00 2001 From: SailorStat <77109932+SailorStat@users.noreply.github.com> Date: Wed, 1 Oct 2025 14:05:24 +0300 Subject: [PATCH 2/3] Update contributors.yml --- contributors.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/contributors.yml b/contributors.yml index e38c4527a0..7f8e26b2fa 100644 --- a/contributors.yml +++ b/contributors.yml @@ -337,6 +337,7 @@ - ryanflorence - ryanhiebert - saengmotmi +- SailorStat - samimsu - sanjai451 - sanketshah19 From 972a23ba58cbda05717088cd5e6a1a21c80e8df2 Mon Sep 17 00:00:00 2001 From: SailorStat <77109932+SailorStat@users.noreply.github.com> Date: Wed, 1 Oct 2025 17:20:37 +0300 Subject: [PATCH 3/3] Update components.tsx --- packages/react-router/lib/components.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-router/lib/components.tsx b/packages/react-router/lib/components.tsx index ae4613cb13..6edaaf0ab8 100644 --- a/packages/react-router/lib/components.tsx +++ b/packages/react-router/lib/components.tsx @@ -1358,7 +1358,7 @@ export interface RoutesProps { * * } /> * } /> - * }> + * } /> * * * @public