Skip to content

Commit

Permalink
Release 2024-09-27 (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannaPeanut authored Sep 27, 2024
2 parents d8558b6 + f1d17ba commit b5a79b5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pages/beteiligung/[surveySlug]/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Spinner } from "@/src/core/components/Spinner"
import SurveyInactivePage from "@/src/survey-public/components/SurveyInactivePage"
import { SurveyFRM7 } from "@/src/survey-public/frm7/SurveyFRM7"
import { surveyDefinition as surveyDefinitionFRM7 } from "@/src/survey-public/frm7/data/survey"
import { SurveyFRM7 } from "@/src/survey-public/frm7/SurveyFRM7"
import { surveyDefinition as surveyDefinitionBB } from "@/src/survey-public/radnetz-brandenburg/data/survey"
import { SurveyBB } from "@/src/survey-public/radnetz-brandenburg/SurveyBB"
import getPublicSurveyBySlug from "@/src/surveys/queries/getPublicSurveyBySlug"
import { BlitzPage } from "@blitzjs/auth"
Expand All @@ -24,7 +25,7 @@ const PublicSurveyPageWithQuery = () => {
return survey.active ? (
<SurveyBB surveyId={survey.id} />
) : (
<SurveyInactivePage surveyDefinition={surveyDefinitionFRM7} />
<SurveyInactivePage surveyDefinition={surveyDefinitionBB} />
)
return null
}
Expand Down

0 comments on commit b5a79b5

Please sign in to comment.