Skip to content

Commit

Permalink
feat: native ios support
Browse files Browse the repository at this point in the history
Missing bits that are required to release an ios app.

This is still WIP
  • Loading branch information
idoshamun committed Jan 8, 2025
1 parent fdf3b9f commit 449ad9c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/webapp/hooks/useWebappVersion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import { useRouter } from 'next/router';
import type { ParsedUrlQuery } from 'querystring';

const getVersion = (query: ParsedUrlQuery): string | undefined => {
if (query.ios) {
return 'ios';
}
if (query.android) {
return 'android';
}
Expand Down

0 comments on commit 449ad9c

Please sign in to comment.