Skip to content

Commit 8ac7e6d

Browse files
authored
Merge pull request #38 from next-engineer/feature/remove-empty-paper-block-homepage
♻️ refactor: 홈페이지에서 로그인하지 않은 사용자를 위한 빈 Paper 블록 제거
2 parents 26eb631 + 3ebc10c commit 8ac7e6d

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

src/pages/HomePage.tsx

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -234,20 +234,7 @@ export default function HomePage() {
234234
</Button>
235235
</Stack>
236236
</Paper>
237-
) : (
238-
<Paper
239-
sx={{
240-
p: 4,
241-
maxWidth: 420,
242-
mx: 'auto',
243-
background: 'rgba(255, 255, 255, 0.95)',
244-
backdropFilter: 'blur(10px)',
245-
boxShadow: tokens.shadows.lg,
246-
border: `1px solid ${tokens.colors.neutral[200]}`,
247-
borderRadius: tokens.borderRadius.xl,
248-
}}
249-
></Paper>
250-
)}
237+
) : null}
251238
</Container>
252239
</Box>
253240

0 commit comments

Comments
 (0)