Skip to content

Commit 1e144bd

Browse files
committed
chore : img tag
1 parent e1fcbb2 commit 1e144bd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/@modal/layouts/LoginModal.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ const LoginModal = () => {
1111

1212
const handleLoginButtonClick = () => {
1313
if (isWindow) {
14-
router.push(process.env.NEXT_PUBLIC_OAUTH_URL || ROUTER.HOME);
14+
window.open(process.env.NEXT_PUBLIC_OAUTH_URL || ROUTER.HOME);
15+
// router.push(process.env.NEXT_PUBLIC_OAUTH_URL || ROUTER.HOME);
1516
}
1617
};
1718

src/templates/post/layouts/detail/SectionBox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const StyledAnchor = styled(Link)`
7474
text-decoration: underline;
7575
`;
7676

77-
const StyledImage = styled(Image)`
77+
const StyledImage = styled.img`
7878
width: 50%;
7979
height: auto;
8080
`;

0 commit comments

Comments
 (0)