when I run the sample app under https://github.com/freshworks-developers/request-method-samples/tree/main/sample-app I get the FDK warning
“‘client’ declared and assigned in different scopes. Possible asynchronous race condition.”.
Is it safe to ignore this warning and is there any way to hide it? I would rather not have a non-fixable warning in my code if possible.
var client;
(async function init() {
client = await app.initialized();
client.events.on('app.activated', renderStarWarsInfo);
})();