From 98602a16973898304ad43541cc8698a4d61ca337 Mon Sep 17 00:00:00 2001 From: Lucas Date: Fri, 3 Jan 2025 17:32:36 +0100 Subject: [PATCH] linter --- .../AssistantBuilderPreviewDrawerFeedbacks.tsx | 2 +- front/lib/swr/assistants.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/front/components/assistant_builder/AssistantBuilderPreviewDrawerFeedbacks.tsx b/front/components/assistant_builder/AssistantBuilderPreviewDrawerFeedbacks.tsx index eba44e8e40fd..32b525f44b5f 100644 --- a/front/components/assistant_builder/AssistantBuilderPreviewDrawerFeedbacks.tsx +++ b/front/components/assistant_builder/AssistantBuilderPreviewDrawerFeedbacks.tsx @@ -55,7 +55,7 @@ export const FeedbacksSection = ({ !isAgentConfigurationFeedbacksLoading && feedbacksNotExhausted ) { - setSize(size + 1); + void setSize(size + 1); } }, { diff --git a/front/lib/swr/assistants.ts b/front/lib/swr/assistants.ts index 59db17025c24..3365c2c0fdda 100644 --- a/front/lib/swr/assistants.ts +++ b/front/lib/swr/assistants.ts @@ -18,8 +18,8 @@ import type { import { fetcher, getErrorFromResponse, - useSWRWithDefaults, useSWRInfiniteWithDefaults, + useSWRWithDefaults, } from "@app/lib/swr/swr"; import type { GetAgentConfigurationsResponseBody } from "@app/pages/api/w/[wId]/assistant/agent_configurations"; import type { PostAgentScopeRequestBody } from "@app/pages/api/w/[wId]/assistant/agent_configurations/[aId]/scope";