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 0e5b758 commit 5df672cCopy full SHA for 5df672c
apps/web/src/pages/MemeDetailPage/components/MemeShareSheet.tsx
@@ -31,7 +31,8 @@ const MemeShareSheet = ({
31
32
const handleKakaoShare = () => {
33
if (isWebview) {
34
- onShareNative();
+ const kakaoShareUrl = `kakaolink://send?text=${encodeURIComponent(title)}&image=${encodeURIComponent(imageUrl)}&url=${encodeURIComponent(window.location.href)}`;
35
+ window.location.href = kakaoShareUrl;
36
return;
37
}
38
0 commit comments