From 9fc613f1cd26a95cc534a81be7a68a7f9124c3e1 Mon Sep 17 00:00:00 2001 From: FlorianEisenmenger Date: Wed, 12 Mar 2025 17:41:11 +0100 Subject: [PATCH] fix --- gfi-ihk-2024/stories/sections/survey/SurveyComponent.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfi-ihk-2024/stories/sections/survey/SurveyComponent.js b/gfi-ihk-2024/stories/sections/survey/SurveyComponent.js index 4e79edc..da6bd48 100644 --- a/gfi-ihk-2024/stories/sections/survey/SurveyComponent.js +++ b/gfi-ihk-2024/stories/sections/survey/SurveyComponent.js @@ -1,7 +1,7 @@ import './survey.scss'; import $ from 'jquery'; import {createElement} from "../../_global/scripts/helpers"; -import {SurveyComplex, SurveySimple} from "./SurveyData"; +import {SurveyComplexData, SurveySimpleData} from "./SurveyData"; import {createButton} from "../../atoms/button/ButtonComponent"; import IHKSurvey from "./survey"; @@ -10,7 +10,7 @@ export const createSurvey = ({ headline = 'Einführung von 2G im Einzelhandel: Was halten Sie davon?', copy = 'Hier können Sie abstimmen:', method = 'get', - data = SurveySimple, + data = SurveySimpleData, }) => { const section = createElement('section', ['participation']); const container = createElement('div', ['container'], null, section);