I am working on an extension made on react, and the paste from the clipboard function is working fine in the browser but not working on the extension. Code I am using:
async function onPasteHandler(): Promise<void> {
const text = await navigator.clipboard.readText();
console.log("text", text);
setValue(text);
}