Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { MarkdownDescription } from "@/ui/shared/markdown-description";
import { PropsWithChildren } from "react";

export function SettingsRow({
Expand All @@ -17,7 +18,9 @@ export function SettingsRow({
{heading} {required && <span className="text-red-700">*</span>}
</h3>
{description && (
<p className="text-sm text-neutral-600">{description}</p>
<MarkdownDescription className="text-sm text-neutral-600">
{description}
</MarkdownDescription>
)}
</div>
<div>{children}</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export function ProgramHelpAndSupportContent({

<SettingsRow
heading="Terms of Service"
description="Program terms of service and legal information"
description="Program terms of service and legal information. [Generate terms for free.](https://dub.co/tools/affiliate-terms-generator)"
>
<div className="flex items-center justify-end">
<div className="w-full max-w-md">
Expand Down
Loading