[SHOPTIME-2075] Home / No focus 상태

원인: 이슈 재현 불가
대책 : Mouse 모드에서 keyboardmode로 전환시 포커스가 없을 경우, window에
focus 주도록 예외처리 추가함. 코드로 재현상태 만들어서 테스트 결과
정상동작함.
This commit is contained in:
yonghyon
2024-10-11 10:59:09 +09:00
parent fc74ee545a
commit e98e4d5abe

View File

@@ -112,6 +112,12 @@ function AppBase(props) {
const deviceCountryCode = httpHeader?.["X-Device-Country"] || "";
useEffect(() => {
if (!cursorVisible && !Spotlight.getCurrent()) {
Spotlight.focus();
}
}, [cursorVisible]);
useEffect(() => {
if (logEnable) {
enableConsole();