Skip to content

Commit a071d1a

Browse files
committed
feat: 인앱 브라우저에서 구글 플레이 스토어로 리다이렉트 URL 수정
- Android에서 인앱 브라우저 사용 시 구글 플레이 스토어의 새로운 URL로 리다이렉트하도록 수정함 - 사용자 경험을 개선하기 위한 작업임
1 parent af5f46e commit a071d1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/web/src/hooks/useInAppBrowserDetect.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const useInAppBrowserDetect = () => {
6363

6464
const moveToStore = useCallback(() => {
6565
if (isAndroid) {
66-
window.location.href = `market://details?id=${MEMEWIKI_APP_INFO.androidPackage}`;
66+
window.location.href = `https://play.google.com/store/apps/details?id=com.mimu_bird.meme`;
6767
} else if (isIOS) {
6868
window.location.href = `itms-apps://itunes.apple.com/app/id${MEMEWIKI_APP_INFO.iosAppId}`;
6969
} else {

0 commit comments

Comments
 (0)