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 a071d1a commit 8d97e41Copy full SHA for 8d97e41
apps/web/src/hooks/useInAppBrowserDetect.ts
@@ -34,7 +34,7 @@ const BROWSER_PATTERNS: BrowserPattern[] = [
34
];
35
36
const MEMEWIKI_APP_INFO = {
37
- androidPackage: 'com.mimu_bird_meme',
+ androidPackage: 'com.mimu_bird.meme',
38
iosAppId: '6751053974',
39
};
40
@@ -63,7 +63,7 @@ const useInAppBrowserDetect = () => {
63
64
const moveToStore = useCallback(() => {
65
if (isAndroid) {
66
- window.location.href = `https://play.google.com/store/apps/details?id=com.mimu_bird.meme`;
+ window.location.href = `https://play.google.com/store/apps/details?id=${MEMEWIKI_APP_INFO.androidPackage}`;
67
} else if (isIOS) {
68
window.location.href = `itms-apps://itunes.apple.com/app/id${MEMEWIKI_APP_INFO.iosAppId}`;
69
} else {
0 commit comments