8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e57daa commit 5a2178cCopy full SHA for 5a2178c
src/features/MarketInfo/actions/Subscribe.tsx
@@ -23,6 +23,7 @@ const Subscribe = memo((props: SubscribeButtonProps) => {
23
return (
24
<Popover
25
open={downloading}
26
+ getPopupContainer={() => document.querySelector('#subscribe_button')!}
27
title={
28
<Flexbox>
29
<Space>
@@ -43,6 +44,7 @@ const Subscribe = memo((props: SubscribeButtonProps) => {
43
44
<Button
45
key={'subscribe'}
46
disabled={downloading}
47
+ id="subscribe_button"
48
onClick={async () => {
49
await fetchAgentData(agent);
50
}}
0 commit comments