Splinter

Results 2 comments of Splinter
trafficstars

> it seems that issue was with --use-aapt2 flag I do confirm, it fixed the latest whatsapp beta compilation errors.

Here is the workaround: ```js const [lastMarkerClickTimestamp, setLastMarkerClickTimestamp] = useState(Date.now()); { const now = Date.now(); if (now - lastMarkerClickTimestamp < 300) return; // 300 ms is fine, but tuneable setLastMarkerClickTimestamp(now);...