From ebad5ab022afe6b217ffe3d57356f80c15986bca Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Fri, 8 Jul 2022 21:01:55 +0200 Subject: [PATCH] lowercase the verb options --- components/report-window/generate-survey-questions.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/report-window/generate-survey-questions.ts b/components/report-window/generate-survey-questions.ts index c0f8714..9c3c44e 100644 --- a/components/report-window/generate-survey-questions.ts +++ b/components/report-window/generate-survey-questions.ts @@ -218,10 +218,10 @@ export default function generateSurveyQuestions(clusters: RequestCluster[]) { title: 'Forma czasownika, jaka będzie użyta w raporcie:', isRequired: true, choices: [ - { value: 0, text: 'Wysłałem' }, - { value: 1, text: 'Wysłałam' }, - { value: 2, text: 'Wysłałom' }, - { value: 3, text: 'Wysłaliśmy' }, + { value: 0, text: 'wysłałem' }, + { value: 1, text: 'wysłałam' }, + { value: 2, text: 'wysłałom' }, + { value: 3, text: 'wysłaliśmy' }, ], }, ],