From 065b5f4317838ddb6257027c4aafa7a422b0c2ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B0=A8=EC=8A=B9=ED=95=98?= <75566149+ss0526100@users.noreply.github.com> Date: Sun, 18 May 2025 23:43:59 +0900 Subject: [PATCH 1/4] chore: disable the ESLint rule that removes Context.Provider (#9162) * style: disable the ESLint rule that removes Context.Provider * fix: correct grammartic mistake --- packages/react-query/eslint.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/react-query/eslint.config.js b/packages/react-query/eslint.config.js index aadb420b907..7ca2619cfaf 100644 --- a/packages/react-query/eslint.config.js +++ b/packages/react-query/eslint.config.js @@ -11,6 +11,9 @@ export default [ { files: ['**/*.{ts,tsx}'], ...pluginReact.configs.recommended, + rules: { + '@eslint-react/no-context-provider': 'off', + }, }, { plugins: { From 09a55bf297b66c88aebd76855af59a97900d8b74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Bucsai?= <41874558+Laci556@users.noreply.github.com> Date: Thu, 22 May 2025 17:32:31 +0200 Subject: [PATCH 2/4] docs: update infinite query fetchNextPage examples (#9172) --- docs/framework/react/guides/infinite-queries.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/framework/react/guides/infinite-queries.md b/docs/framework/react/guides/infinite-queries.md index 6dc1e0baca3..04e4ac7eea7 100644 --- a/docs/framework/react/guides/infinite-queries.md +++ b/docs/framework/react/guides/infinite-queries.md @@ -82,7 +82,7 @@ function Projects() {