We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1fcbb2 commit 1e144bdCopy full SHA for 1e144bd
src/@modal/layouts/LoginModal.tsx
@@ -11,7 +11,8 @@ const LoginModal = () => {
11
12
const handleLoginButtonClick = () => {
13
if (isWindow) {
14
- router.push(process.env.NEXT_PUBLIC_OAUTH_URL || ROUTER.HOME);
+ window.open(process.env.NEXT_PUBLIC_OAUTH_URL || ROUTER.HOME);
15
+ // router.push(process.env.NEXT_PUBLIC_OAUTH_URL || ROUTER.HOME);
16
}
17
};
18
src/templates/post/layouts/detail/SectionBox.tsx
@@ -74,7 +74,7 @@ const StyledAnchor = styled(Link)`
74
text-decoration: underline;
75
`;
76
77
-const StyledImage = styled(Image)`
+const StyledImage = styled.img`
78
width: 50%;
79
height: auto;
80
0 commit comments