From 88bbd01e8478b8b63e0f05a53a3c325270141bb3 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sun, 3 Aug 2025 02:02:31 +0200 Subject: [PATCH] Format prompts --- lib/client/profile.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/client/profile.tsx b/lib/client/profile.tsx index b9527537..25b700f9 100644 --- a/lib/client/profile.tsx +++ b/lib/client/profile.tsx @@ -286,19 +286,19 @@ export function getProfile(url: string, header: any = null) {
< h2 className="text-sm font-medium text-gray-500 uppercase tracking-wider"> Prompt Answers - < ul + < div className="gap-2 mt-1"> { userData.profile.promptAnswers.map((value: any, idx: any) => ( -
  • {value.prompt}
    {value.answer} -
  • +
    )) } - + ) }