How to track 2 download buttons with GA?

Hi,
I have followed this official tutorial and managed to setup the tracking successfully for the first button.

But I have 2 download buttons to track, I duplicated the button and edited the code for the 2nd button but am unable to get it to work. Have include the code below.

Secondly, how do you check back the tracking number in GA? I setup the first tracking few hours ago but the GA > Reports > Events only shows active users and the last 30mins. Where in GA can I see the overall events recorded?

Any help is greatly appreciated!

import wixWindow from 'wix-window';

export function dlcuratorform2020_click(event) {
    wixWindow.trackEvent("CustomEvent", {
        event:"Funnel",
        eventCategory:"Download IMPART 2020 Curator Form",
        eventAction:"Downloads CU",
        eventLabel: event.target.label,
    });
 //Add your code for this event here: 
}

export function dlvaform2020_click(event) {
    wixWindow.trackEvent("CustomEvent1", {
        event:"Funnel1",
        eventCategory:"Download IMPART 2020 VA Form",
        eventAction: "Downloads VA",
        eventLabel: event.target.label,
    }); 
 //Add your code for this event here: 
}

Did you find solution for this?

I didn’t. In the end, I created a form for user to fill in their name, email and 2 checkboxes for which download they want, then the submit button leads to to download page. This may not be as accurate but more important for me to capture their email and their interest.