From 72336ebb3753acf37ca6fcb9801a754c430f38a2 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 18 Jul 2024 12:52:53 +0000 Subject: [PATCH] ci: apply automated fixes --- examples/react/optimistic-updates-ui/src/pages/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/react/optimistic-updates-ui/src/pages/index.tsx b/examples/react/optimistic-updates-ui/src/pages/index.tsx index 5941b2f9b6..7e4a8e4b12 100644 --- a/examples/react/optimistic-updates-ui/src/pages/index.tsx +++ b/examples/react/optimistic-updates-ui/src/pages/index.tsx @@ -40,7 +40,7 @@ function Example() { headers: { 'Content-Type': 'application/json' }, }) if (!response.ok) { - throw new Error('Something went wrong.'); + throw new Error('Something went wrong.') } return await response.json() },