diff --git a/src/app/admin/configuration/page.tsx b/src/app/admin/configuration/page.tsx
index fc9962ab..2e196094 100644
--- a/src/app/admin/configuration/page.tsx
+++ b/src/app/admin/configuration/page.tsx
@@ -14,7 +14,7 @@ export default async function AdminConfigurationPage() {
-
+
}
diff --git a/src/components/InfoBlock.tsx b/src/components/InfoBlock.tsx
index 2426579e..3d622ed7 100644
--- a/src/components/InfoBlock.tsx
+++ b/src/components/InfoBlock.tsx
@@ -7,12 +7,14 @@ export default function InfoBlock({
color = 'gray',
padding = 'normal',
centered = true,
+ spaceChildren = true,
}: {
children: ReactNode
className?: string
color?: 'gray' | 'blue'
- padding?: 'loose' | 'normal' | 'tight';
- centered?: boolean;
+ padding?: 'loose' | 'normal' | 'tight'
+ centered?: boolean
+ spaceChildren?: boolean
} ) {
const getColorClasses = () => {
switch (color) {
@@ -48,7 +50,7 @@ export default function InfoBlock({
{children}