From e13f9319859ea5217bf97fc0d7dcbbe31cc62530 Mon Sep 17 00:00:00 2001 From: Feror Date: Tue, 18 Mar 2025 10:20:19 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20d'instructions=20sur=20le=20scroll=20pa?= =?UTF-8?q?r=20fl=C3=A8ches=20directionnelles?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- front/Tabs/Projects.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/front/Tabs/Projects.ts b/front/Tabs/Projects.ts index 41d0500..6ea4813 100644 --- a/front/Tabs/Projects.ts +++ b/front/Tabs/Projects.ts @@ -56,7 +56,9 @@ const Projects = ({ width, height, scrollPosition }: ProjectsProps) => { width, height, scrollPosition, - text: projects.map((project) => Project(project)).join(newLine), + text: ` Use the arrows keys to navigate up and down.${newLine}${newLine}${projects + .map((project) => Project(project)) + .join(newLine)}`, }); }; export default Projects;