diff --git a/package-lock.json b/package-lock.json index 5ee3db1ed..e47a03fce 100644 --- a/package-lock.json +++ b/package-lock.json @@ -117,7 +117,7 @@ "prettier": "^3.5.3", "prettier-plugin-sql": "^0.19.0", "prettier-plugin-tailwindcss": "^0.6.11", - "react-router-devtools": "^5.0.4", + "react-router-devtools": "^5.0.5", "remix-flat-routes": "^0.8.5", "tsx": "^4.19.4", "tw-animate-css": "^1.2.9", @@ -15956,9 +15956,9 @@ } }, "node_modules/react-router-devtools": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/react-router-devtools/-/react-router-devtools-5.0.4.tgz", - "integrity": "sha512-iTWKNOOPZYMH6pYCoPc0aOFu0F5uVHc//Ugo90SRFqajPf4GRM5jFvrlmvNvxC98yp3ceJDit6Hargml9JpLtA==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/react-router-devtools/-/react-router-devtools-5.0.5.tgz", + "integrity": "sha512-UmJnkfyvoOc08PvXMDdy0Iw5HyMW5kVBsGkJPH/DbsR5UxzguzTobVGtjq/AQLjRkEZnFbDxU5xehbVP1g7CMw==", "dev": true, "license": "MIT", "workspaces": [ diff --git a/package.json b/package.json index 2afcdf4eb..20fc57bbc 100644 --- a/package.json +++ b/package.json @@ -148,7 +148,7 @@ "prettier": "^3.5.3", "prettier-plugin-sql": "^0.19.0", "prettier-plugin-tailwindcss": "^0.6.11", - "react-router-devtools": "^5.0.4", + "react-router-devtools": "^5.0.5", "remix-flat-routes": "^0.8.5", "tsx": "^4.19.4", "tw-animate-css": "^1.2.9", @@ -164,4 +164,4 @@ "seed": "tsx prisma/seed.ts" }, "prettier": "@epic-web/config/prettier" -} \ No newline at end of file +} diff --git a/tests/mocks/index.ts b/tests/mocks/index.ts index ea52c807f..441f3f039 100644 --- a/tests/mocks/index.ts +++ b/tests/mocks/index.ts @@ -22,7 +22,7 @@ server.listen({ return } // React-router-devtools send custom requests internally to handle some functionality, we ignore those - if (request.url.includes('react-router-devtools-request')) { + if (request.url.includes('__rrdt')) { return } // Print the regular MSW unhandled request warning otherwise.