Skip to content

Commit

Permalink
fix: for error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeongh00 committed Jul 22, 2024
1 parent 329f55f commit 56e9e72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public ApplicationResponse<List<StoreInfo>> getStoreInfo() {
)
@Operation(summary = "장바구니 추가 API", description = "장바구니 추가 API 입니다.")
public ApplicationResponse<String> addToCart(@PathVariable Long menuId,
@RequestHeader(AuthConsts.ACCESS_TOKEN_HEADER) String accessToken {
@RequestHeader(AuthConsts.ACCESS_TOKEN_HEADER) String accessToken) {

storeInfoUseCase.addToCart(menuId, accessToken);
return ApplicationResponse.ok("장바구니 추가 완료");
Expand Down

0 comments on commit 56e9e72

Please sign in to comment.