fix(index): wrong error routes count

This commit is contained in:
Tony 2024-03-05 15:09:38 +08:00 committed by GitHub
parent d17ebe81d0
commit 6f8a898363
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ const Index: FC<{ debugQuery: string | undefined }> = ({ debugQuery }) => {
.slice(0, 30)
.map((route) => (
<>
{debug.routes[route]} {route}
{debug.errorRoutes[route]} {route}
<br />
</>
)),