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;