feat: implement account management and subscription payment center components
This commit is contained in:
@@ -117,6 +117,15 @@ function ScanTerminalScreen() {
|
||||
}
|
||||
}, [terminalData?.generated_at]);
|
||||
|
||||
useEffect(() => {
|
||||
if (activeView === "map") {
|
||||
const timer = setTimeout(() => {
|
||||
window.dispatchEvent(new Event("resize"));
|
||||
}, 150);
|
||||
return () => clearTimeout(timer);
|
||||
}
|
||||
}, [activeView]);
|
||||
|
||||
const scanTerminalRootClassName = clsx(
|
||||
styles.root,
|
||||
scanRootClass,
|
||||
|
||||
Reference in New Issue
Block a user