(ads) change split

This commit is contained in:
Andrea Vos 2025-05-16 14:33:41 +02:00
parent 3735b253f7
commit 78c66f6033

View File

@ -93,7 +93,7 @@ const confirmAge = async (): Promise<void> => {
const provider = useStorage<string | null>('ads-provider', null);
if (provider.value === null) {
provider.value = Math.random() < 0.5 ? 'publift' : 'pushup';
provider.value = Math.random() < 0.8 ? 'publift' : 'pushup';
}
const adsEnabled = computed((): boolean => {