From ba98844214f9f88110f96cf8c8c8f034e60ace19 Mon Sep 17 00:00:00 2001 From: olitreadwell Date: Wed, 19 Aug 2026 13:29:15 +1200 Subject: [PATCH] fix: point PR template contributing link at .github/CONTRIBUTING.md The PR template links to CONTRIBUTING.md#your-first-code-contribution, but the guide lives at .github/CONTRIBUTING.md, so the root path 404s. Fix the link path. --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 899a97634..23d079e15 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,4 @@ -- [ ] I have followed the [Your First Code Contribution section of the Contributing guide](https://github.com/themesberg/flowbite-react/blob/main/CONTRIBUTING.md#your-first-code-contribution) +- [ ] I have followed the [Your First Code Contribution section of the Contributing guide](https://github.com/themesberg/flowbite-react/blob/main/.github/CONTRIBUTING.md#your-first-code-contribution) Summarize the changes made and the motivation behind them.