Skip to content

Commit

Permalink
fix: correct string interpolation in 'no projects found' message
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexTraveylan committed Jan 20, 2025
1 parent f203022 commit 72ef5fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/suivi/(composents)/search-projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const SearchProjects = ({ projects }: { projects: Project[] }) => {

{filteredProjects.length === 0 && (
<p className="text-center text-gray-500">
Aucun projet trouvé pour "{searchTerm}"
{`Aucun projet trouvé pour "${searchTerm}"`}
</p>
)}
</div>
Expand Down

0 comments on commit 72ef5fc

Please sign in to comment.