adding welcome screen

This commit is contained in:
orangecoding
2026-02-17 12:35:39 +01:00
parent b86e351007
commit fd7e228972
15 changed files with 295 additions and 31 deletions

View File

@@ -70,11 +70,11 @@ export const trackMainEvent = async () => {
}
};
export const trackFeature = async (feature) => {
export const trackPoi = async (poi) => {
if (!(await shouldTrack())) return;
const trackingObj = await enrichTrackingObject({
feature,
feature: poi,
});
await sendTrackingData('/feature', trackingObj);