lowercase the verb options

This commit is contained in:
Kuba Orlik 2022-07-08 21:01:55 +02:00
parent 2b763cd7e8
commit ebad5ab022
1 changed files with 4 additions and 4 deletions

View File

@ -218,10 +218,10 @@ export default function generateSurveyQuestions(clusters: RequestCluster[]) {
title: 'Forma czasownika, jaka będzie użyta w raporcie:', title: 'Forma czasownika, jaka będzie użyta w raporcie:',
isRequired: true, isRequired: true,
choices: [ choices: [
{ value: 0, text: 'Wysłałem' }, { value: 0, text: 'wysłałem' },
{ value: 1, text: 'Wysłałam' }, { value: 1, text: 'wysłałam' },
{ value: 2, text: 'Wysłałom' }, { value: 2, text: 'wysłałom' },
{ value: 3, text: 'Wysłaliśmy' }, { value: 3, text: 'wysłaliśmy' },
], ],
}, },
], ],