From 895f5e5da41f75d70246c1e87685be7abde2bc4f Mon Sep 17 00:00:00 2001 From: joel Date: Tue, 19 Nov 2024 17:10:07 -0800 Subject: [PATCH] fix: temp variable removal --- apps/total-typescript/src/pages/wizard-quiz.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/total-typescript/src/pages/wizard-quiz.tsx b/apps/total-typescript/src/pages/wizard-quiz.tsx index d9ea6ac19..7b3d19b99 100644 --- a/apps/total-typescript/src/pages/wizard-quiz.tsx +++ b/apps/total-typescript/src/pages/wizard-quiz.tsx @@ -139,7 +139,7 @@ const WizardQuizPage = ({rank}: {rank: string}) => { currentQuestion, currentQuestionId, isLoading, - + isComplete, isPresenting, sendToMachine, handleSubmitAnswer, @@ -148,8 +148,6 @@ const WizardQuizPage = ({rank}: {rank: string}) => { machineState, } = useSurveyPageOfferMachine(WIZARD_QUIZ_ID) - const isComplete = true - const answerSurveyMutation = trpc.convertkit.answerSurvey.useMutation() const answerSurveyMultipleMutation = trpc.convertkit.answerSurveyMultiple.useMutation()