Skip to content

Commit

Permalink
Merge pull request #628 from sparcs-kaist/#580.2-bug-isapp
Browse files Browse the repository at this point in the history
#580.2 App에서 `SuggestAppTopBar`이 띄어지는 버그 해결
  • Loading branch information
14KGun authored Sep 9, 2023
2 parents 0fe8f5f + 7b029aa commit 3d7881e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Skeleton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const Skeleton = ({ children }: SkeletonProps) => {
) : (
<>
{isDisplayNavigation && <Navigation />}
{isDisplayNavigation && deviceType.startsWith("app/") && (
{isDisplayNavigation && !deviceType.startsWith("mobile/") && (
<SuggestAppTopBar />
)}
{children}
Expand Down

0 comments on commit 3d7881e

Please sign in to comment.