Skip to content

Commit 3be63af

Browse files
committed
all re-displays of cards (2 per session)...
This count refers to 'reshuffling' a failed card into the session Qs for later display
1 parent b8d15c9 commit 3be63af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/common-ui/src/composables/CompositionViewable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export function useQuestionView<Q extends Question>(
8787
const priorAttempts = ref(0);
8888
const priorAnswers = ref<[Answer, string][]>([]);
8989
const maxAttemptsPerView = ref(3);
90-
const maxSessionViews = ref(1);
90+
const maxSessionViews = ref(2);
9191
const question = ref<Q>();
9292

9393
const submitAnswer = (answer: Answer, submittingClass?: string): QuestionRecord => {

0 commit comments

Comments
 (0)