Skip to content

Commit

Permalink
chore: 사소한 메소드 이름 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
potados99 committed Oct 3, 2021
1 parent 531b2bc commit 5fdbb9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/store/RootStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default class RootStore {
// 로그인이 필요없는 flow
const gettingCafeteria = () => this.cafeteriaStore.fetchCafeteria();
const fetchingNewNotice = () => this.noticeStore.fetchNewNotice();
const fetchOnboardingShownStatus = () => this.bookingStore.fetchOnboardingShownStatus();
const fetchBookingFlags = () => this.bookingStore.fetchFlags();

const thoseNeedLogin = loggingIn()
.then(fetchingMyBookings)
Expand All @@ -63,7 +63,7 @@ export default class RootStore {
const thoseNeedNoLogin = Promise.all([
gettingCafeteria(),
fetchingNewNotice(),
fetchOnboardingShownStatus(),
fetchBookingFlags(),
]).catch(e =>
console.log(
`[카페테리아 & 새 공지 & 예약 온보딩 화면 보여주었는지 여부]를 가져오는 데에 실패했습니다: ${e}`,
Expand Down

0 comments on commit 5fdbb9b

Please sign in to comment.