Skip to content

Commit

Permalink
Edit return message for list task
Browse files Browse the repository at this point in the history
  • Loading branch information
NereusWB922 committed Sep 18, 2023
1 parent ebbc5b1 commit 296c95d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/java/corgi/ui/TextRenderer.java
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,10 @@ public String showNoTaskFound() {
* @param taskList
*/
public String showTaskList(String taskList) {
return taskList;
return returnMessage(
"Here's the list of tasks that better be done:",
"",
taskList);
}

/**
Expand Down

0 comments on commit 296c95d

Please sign in to comment.