Skip to content

Commit

Permalink
chore(tt): dont shuffle choices in ts survey
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtaholik authored and kodiakhq[bot] committed Oct 24, 2024
1 parent bcde91d commit 3e510c2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions apps/total-typescript/src/offer/survey/data-typescript-2024.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const dataTypescript2024: QuizResource = {
skill_level: {
question: "👋 What's your current TypeScript skill level?",
type: 'multiple-choice',
shuffleChoices: true,
shuffleChoices: false,
choices: [
{
answer: 'beginner',
Expand All @@ -74,7 +74,7 @@ export const dataTypescript2024: QuizResource = {
development_focus: {
question: 'What type of TypeScript development do you primarily do?',
type: 'multiple-choice',
shuffleChoices: true,
shuffleChoices: false,
choices: [
{
answer: 'frontend',
Expand All @@ -97,7 +97,7 @@ export const dataTypescript2024: QuizResource = {
role: {
question: 'Which best describes your role on the team?',
type: 'multiple-choice',
shuffleChoices: true,
shuffleChoices: false,
choices: [
{
answer: 'individual',
Expand All @@ -122,7 +122,7 @@ export const dataTypescript2024: QuizResource = {
'Which tools are you using with TypeScript? (Choose all that apply)',
type: 'multiple-choice',
allowMultiple: true,
shuffleChoices: true,
shuffleChoices: false,
choices: [
{
answer: 'react',
Expand Down Expand Up @@ -188,7 +188,7 @@ export const dataTypescript2024: QuizResource = {
learning_priority: {
question: 'What would help you most with TypeScript right now?',
type: 'multiple-choice',
shuffleChoices: true,
shuffleChoices: false,
choices: [
{
answer: 'fundamentals',
Expand Down

0 comments on commit 3e510c2

Please sign in to comment.