From 044e14b05ca0222790ac438b9e6a8ec1ff9f07f7 Mon Sep 17 00:00:00 2001 From: Bhagya Amarasinghe Date: Tue, 3 Mar 2026 21:23:24 +0530 Subject: [PATCH] fix: add type annotation to survey copy results array to resolve TypeScript build error --- apps/web/modules/survey/list/components/copy-survey-form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/modules/survey/list/components/copy-survey-form.tsx b/apps/web/modules/survey/list/components/copy-survey-form.tsx index 0fb29c6855..b371590348 100644 --- a/apps/web/modules/survey/list/components/copy-survey-form.tsx +++ b/apps/web/modules/survey/list/components/copy-survey-form.tsx @@ -135,7 +135,7 @@ export const CopySurveyForm = ({ defaultProjects, survey, onCancel, setOpen }: C }); }); - const results = []; + const results: Awaited>[] = []; for (const item of copyOperationsWithMetadata) { const result = await copySurveyToOtherEnvironmentAction({ surveyId: survey.id,