From a7dc3ede21f4ac21abab616aa1de48452943a8e4 Mon Sep 17 00:00:00 2001 From: nmemmert Date: Wed, 3 Jun 2026 15:56:17 -0400 Subject: [PATCH] remove quiz label --- src/colossiansStudy.tsx | 44 ++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/colossiansStudy.tsx b/src/colossiansStudy.tsx index 9d2f37b..8333fd4 100644 --- a/src/colossiansStudy.tsx +++ b/src/colossiansStudy.tsx @@ -1698,7 +1698,7 @@ export function ColossiansStudySectionPage({ content }: Props) { ))}
- Take the Quiz + Discussion Questions Go to Community Ask Nate
@@ -2964,7 +2964,7 @@ export function StudyQuizPage({ content }: Props) { setAnswers(Array.isArray(data.answers) ? data.answers : []) } catch (err) { if (cancelled) return - setError(err instanceof Error ? err.message : 'Unable to load quiz answers.') + setError(err instanceof Error ? err.message : 'Unable to load answers.') } finally { if (cancelled) return setLoading(false) @@ -2986,9 +2986,9 @@ export function StudyQuizPage({ content }: Props) { headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ answers }), }) - setMessage('Quiz answers saved.') + setMessage('Answers saved.') } catch (err) { - setError(err instanceof Error ? err.message : 'Unable to save quiz answers.') + setError(err instanceof Error ? err.message : 'Unable to save answers.') } finally { setSaving(false) } @@ -2996,11 +2996,11 @@ export function StudyQuizPage({ content }: Props) { if (!study || !section) { return ( -
+
-

Study Quiz

-

Quiz not found

-

The lesson quiz you requested is not available.

+

Discussion Questions

+

Discussion questions not found

+

The discussion questions you requested are not available.

Back to Studies
@@ -3013,8 +3013,8 @@ export function StudyQuizPage({ content }: Props) { if (!auth.checked) { return ( -
-

Loading quiz...

+
+

Loading discussion questions...

) } @@ -3023,9 +3023,9 @@ export function StudyQuizPage({ content }: Props) { return (
-

Study Quiz

+

Discussion Questions

Sign In Required

-

You need to sign in before you can view and save quiz answers.

+

You need to sign in before you can view and save your discussion answers.

Sign In
@@ -3036,9 +3036,9 @@ export function StudyQuizPage({ content }: Props) { return (
-

Study Quiz

-

Enroll to Access the Quiz

-

Please enroll in {study.title} to open the quiz for this lesson.

+

Discussion Questions

+

Enroll to Access Discussion Questions

+

Please enroll in {study.title} to open the discussion questions for this lesson.

Go to Study
@@ -3046,12 +3046,12 @@ export function StudyQuizPage({ content }: Props) { } return ( -
+
-

Quiz

+

Discussion Questions

{section.title}

-

Answer the lesson questions below and save your responses for later review.

+

Work through the discussion questions below and save your responses for later review.

Back to Lesson
@@ -3061,13 +3061,13 @@ export function StudyQuizPage({ content }: Props) {
{loading ? ( -

Loading quiz...

+

Loading discussion questions...

) : error ? (

{error}

) : !canSubmit ? (
-

No Quiz Questions

-

This lesson does not have quiz questions configured yet.

+

No Discussion Questions

+

This lesson does not have discussion questions configured yet.

) : (
{ e.preventDefault(); saveQuiz() }}> @@ -3088,7 +3088,7 @@ export function StudyQuizPage({ content }: Props) {
))}
- +
{message &&

{message}

}