Skip to content

Commit

Permalink
fix: Thymeleaf TemplateInputException에러 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
sapiensXXV committed Jan 10, 2024
1 parent 98021a6 commit 5d9b4d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/mangmae/gongnomok/ItemController.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ public class ItemController {
*/
@GetMapping("/armor/work-glove")
public String workGlove() {
return "/item/armor/work-glove";
return "item/armor/work-glove";
}

@GetMapping("/weapon/dark-avarice")
public String darkAvarice() {
return "/item/weapon/dark-avarice";
return "item/weapon/dark-avarice";
}

@GetMapping("/weapon/evil-wings")
Expand Down

0 comments on commit 5d9b4d2

Please sign in to comment.