diff --git a/packages/ui/src/components/Organisms/PageContent/BlockAccordion.tsx b/packages/ui/src/components/Organisms/PageContent/BlockAccordion.tsx
index b22126a39..86a3f79ea 100644
--- a/packages/ui/src/components/Organisms/PageContent/BlockAccordion.tsx
+++ b/packages/ui/src/components/Organisms/PageContent/BlockAccordion.tsx
@@ -50,51 +50,53 @@ const theme: CustomFlowbiteTheme = {
export function BlockAccordion(props: BlockAccordionFragment) {
return (
-
-
- {props.items.map((item, index) => (
-
-
-
- {item.icon && } {item.title}
-
-
-
-
- {item.textContent?.markup && (
- ) => {
- return (
-
- {children}
-
- );
- },
- }}
- markup={item.textContent.markup}
- />
- )}
-
-
-
- ))}
-
-
+
+
+
+ {props.items.map((item, index) => (
+
+
+
+ {item.icon && } {item.title}
+
+
+
+
+ {item.textContent?.markup && (
+ ) => {
+ return (
+
+ {children}
+
+ );
+ },
+ }}
+ markup={item.textContent.markup}
+ />
+ )}
+
+
+
+ ))}
+
+
+
);
}
diff --git a/packages/ui/src/components/Organisms/PageContent/BlockQuote.tsx b/packages/ui/src/components/Organisms/PageContent/BlockQuote.tsx
index 2d6c870bc..6cea70774 100644
--- a/packages/ui/src/components/Organisms/PageContent/BlockQuote.tsx
+++ b/packages/ui/src/components/Organisms/PageContent/BlockQuote.tsx
@@ -3,45 +3,47 @@ import React from 'react';
export function BlockQuote(props: BlockQuoteFragment) {
return (
-
-
-
- {props.quote &&
}
-
- {props.image && (
-
+
+
+
+
+
);
}