Skip to content

Commit

Permalink
chore : img tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubinquitous committed Mar 4, 2024
1 parent e1fcbb2 commit 1e144bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/@modal/layouts/LoginModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ const LoginModal = () => {

const handleLoginButtonClick = () => {
if (isWindow) {
router.push(process.env.NEXT_PUBLIC_OAUTH_URL || ROUTER.HOME);
window.open(process.env.NEXT_PUBLIC_OAUTH_URL || ROUTER.HOME);
// router.push(process.env.NEXT_PUBLIC_OAUTH_URL || ROUTER.HOME);
}
};

Expand Down
2 changes: 1 addition & 1 deletion src/templates/post/layouts/detail/SectionBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const StyledAnchor = styled(Link)`
text-decoration: underline;
`;

const StyledImage = styled(Image)`
const StyledImage = styled.img`
width: 50%;
height: auto;
`;
Expand Down

0 comments on commit 1e144bd

Please sign in to comment.