Skip to content

Commit abdc2f3

Browse files
authored
Merge pull request #142 from OurMenu/KAN-64-fix/search-history
[Hotfix] 버그 수정
2 parents 960b4e3 + cc5fca7 commit abdc2f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/ourmenu/backend/domain/search/dto/GetSearchHistoryResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static GetSearchHistoryResponse from(NotOwnedMenuSearch notOwnedMenuSearc
2626
return GetSearchHistoryResponse.builder()
2727
.menuTitle(notOwnedMenuSearch.getTitle())
2828
.storeAddress(notOwnedMenuSearch.getAddress())
29-
.storeId(notOwnedMenuSearch.getId().toString())
29+
.storeId(notOwnedMenuSearch.getStoreId())
3030
.isCrawled(false)
3131
.modifiedAt(notOwnedMenuSearch.getModifiedAt())
3232
.build();

0 commit comments

Comments
 (0)