david-sunsyte
david-sunsyte
Hi @cwomack , thank you so much for your reply. The tokens are coming from the callback from the google initialize function shown below: ``` window.google.accounts.id.initialize({ client_id: process.env.GOOGLE_CLIENT_ID, callback: (response:...
I should add that the overall problem I'm trying to solve for is to create a custom filter form, in which I can add a series of inputs, for example,...
Ugghhh, @odoe, I literally totally spaced that....total rookie move/walk of shame for me :( Thank you!! We've actually met and worked together a few times at the dev summit so...
Will do, thank you! What I'm facing with this path is this...'initialize' below runs twice, which creates two button click listeners, and in fact two view objects. ``` const filterExpandButton...
I should add that 'openFilter' is a function that's passed to my map.js from my CustomMapView component. ``` const openFilter = () => setOpen(!open); const loadMap = async () =>...
And although similar to how you approached destroying the first view that gets created, this just feels odd... ``` export const initialize = async (container, openFilter) => { view.container =...