Skip to content

Commit

Permalink
chore: usedToBookingFeature 항상 false 나오도록 함
Browse files Browse the repository at this point in the history
  • Loading branch information
potados99 committed Oct 8, 2021
1 parent bcf9f8e commit 98810b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/presentation/features/booking/BookingStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ export default class BookingStore {

protected _usedToBookingFeature = false;
get usedToBookingFeature() {
return this._usedToBookingFeature;
// 항상 false로 오버라이드합니다.
return false;
}
set usedToBookingFeature(value) {
this._usedToBookingFeature = value;
Expand Down

0 comments on commit 98810b8

Please sign in to comment.