From 64617fffcfff850fdbadfec37f9df06bff9c9567 Mon Sep 17 00:00:00 2001 From: Antonio De Lucreziis Date: Wed, 11 Jan 2023 12:19:04 +0100 Subject: [PATCH] fix: aggiustati dei dettagli --- client/pages/ProfilePage.tsx | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/client/pages/ProfilePage.tsx b/client/pages/ProfilePage.tsx index 351ee63..7acbcc5 100644 --- a/client/pages/ProfilePage.tsx +++ b/client/pages/ProfilePage.tsx @@ -31,17 +31,21 @@ export const ProfilePage = ({}) => { <>
-
Le tue soluzioni
-
- {sortedSolutions.map(solution => ( - - ))} -
Profilo
- Vai alla tua pagina utente + Vai alla tua pagina pubblica + {sortedSolutions.length > 0 && ( + <> +
Le tue soluzioni
+
+ {sortedSolutions.map(solution => ( + + ))} +
+ + )}
)