Yeah, this shouldn't popup every time 🤔 How did you initiate bitcoin-connect, can you share some code?
nostr:npub1getal6ykt05fsz5nqu4uld09nfj3y3qxmv8crys4aeut53unfvlqr80nfm is it possible to use https://github.com/getAlby/bitcoin-connect without having to show this popup every time you open the app 
Discussion
This opens the popup:
const {requestProvider} = await import("@getalby/bitcoin-connect-react")
const provider = await requestProvider()
But found a solution that doesnt:
import {onConnected} from '@getalby/bitcoin-connect';
const unsub = onConnected(async (provider) => {
...
});
unsub();