Skip to content

Commit

Permalink
fix: accessToken 없는 경우에만 ContactBanner 뜨도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
useonglee committed Feb 22, 2024
1 parent 1daba1c commit b28ddf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/web/src/app/my/feed/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function FeedPage() {

return (
<article className={wrapper}>
{accessToken != null && <ContactBanner />}
{accessToken == null && <ContactBanner />}
<UpcomingSchedule />
<Recommendation />
<PreviousSchedule />
Expand Down

0 comments on commit b28ddf1

Please sign in to comment.