From 54f16f69ff909a5ea78968b6a1079f5866413441 Mon Sep 17 00:00:00 2001 From: SeanBarker182 <43788519+SeanBarker182@users.noreply.github.com> Date: Fri, 11 Nov 2022 07:06:07 -0500 Subject: [PATCH] docs: Adds a missing square bracket (#4488) --- docs/guides/query-invalidation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/query-invalidation.md b/docs/guides/query-invalidation.md index cbd1093e49..0d8aac55bc 100644 --- a/docs/guides/query-invalidation.md +++ b/docs/guides/query-invalidation.md @@ -48,7 +48,7 @@ You can even invalidate queries with specific variables by passing a more specif ```tsx queryClient.invalidateQueries({ - queryKey: ['todos', { type: 'done' }, + queryKey: ['todos', { type: 'done' }], }) // The query below will be invalidated