Fix Link Survey also showing for In-Product Surveys (#727)

This commit is contained in:
Matti Nannt
2023-08-22 17:14:03 +02:00
committed by GitHub
parent 4562d85974
commit 2a60e8f464
+1 -1
View File
@@ -10,7 +10,7 @@ import SurveyInactive from "@/app/s/[surveyId]/SurveyInactive";
export default async function LinkSurveyPage({ params }) {
const survey = await getSurvey(params.surveyId);
if (!survey) {
if (!survey || survey.type !== "link") {
return <SurveyInactive status="not found" />;
}