install prompt support and iOS “Share → Add to Home Screen” guidance. Also added a small helper + tests to decide when/which banner variant should show, and shared copy in common.json.
10 lines
243 B
TypeScript
10 lines
243 B
TypeScript
export type TourStepKey = 'event' | 'qr' | 'photos' | 'push';
|
|
|
|
export function resolveTourStepKeys(hasEvents: boolean): TourStepKey[] {
|
|
if (hasEvents) {
|
|
return ['qr', 'photos', 'push'];
|
|
}
|
|
|
|
return ['event', 'qr', 'photos', 'push'];
|
|
}
|