diff --git a/apps/nextjs/src/app/[locale]/manage/apps/page.tsx b/apps/nextjs/src/app/[locale]/manage/apps/page.tsx
index 761fd4495..f94cff54f 100644
--- a/apps/nextjs/src/app/[locale]/manage/apps/page.tsx
+++ b/apps/nextjs/src/app/[locale]/manage/apps/page.tsx
@@ -1,3 +1,4 @@
+import { Fragment } from "react";
import Link from "next/link";
import { redirect } from "next/navigation";
import { ActionIcon, ActionIconGroup, Anchor, Avatar, Card, Group, Stack, Text, Title } from "@mantine/core";
@@ -98,7 +99,12 @@ const AppCard = async ({ app }: AppCardProps) => {
{app.description && (
- {app.description}
+ {app.description.split("\n").map((line, index) => (
+
+ {line}
+
+
+ ))}
)}
{app.href && (
diff --git a/packages/forms-collection/src/new-app/_form.tsx b/packages/forms-collection/src/new-app/_form.tsx
index a23f8c5e6..00d60a033 100644
--- a/packages/forms-collection/src/new-app/_form.tsx
+++ b/packages/forms-collection/src/new-app/_form.tsx
@@ -97,7 +97,13 @@ export const AppForm = ({
-
+
(
+
+ {line}
+
+
+ ))}
position="right-start"
multiline
disabled={!options.showDescriptionTooltip || !app.description}