Skip to content

Commit

Permalink
feat: show banner on ios
Browse files Browse the repository at this point in the history
  • Loading branch information
ooooorobo committed Sep 19, 2023
1 parent 8206a46 commit 3d7c44a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -3,5 +3,5 @@ import { EnvContext } from '../context/EnvContext';

export const useShowAppDownloadBanner = () => {
const { platform } = useContext(EnvContext);
return platform === 'android';
return ['android', 'ios'].includes(platform);
};

0 comments on commit 3d7c44a

Please sign in to comment.