release: Phase 3 완료 (React 19 + MapLibre GL JS 전환) #2

병합
htlee develop 에서 main 로 11 commits 를 머지했습니다 2026-02-15 17:53:44 +09:00
3개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
Showing only changes of commit 7b13977b50 - Show all commits

파일 보기

@ -104,7 +104,7 @@ const VesselListPanel = ({
if (vesselId && sourceState && sourceState !== state) { if (vesselId && sourceState && sourceState !== state) {
onDrop?.(vesselId, sourceState, state); onDrop?.(vesselId, sourceState, state);
} }
} catch (error) { } catch {
// 드롭 데이터 파싱 실패 시 무시 (외부 드래그 소스일 수 있음) // 드롭 데이터 파싱 실패 시 무시 (외부 드래그 소스일 수 있음)
} }
}, },

파일 보기

@ -289,7 +289,7 @@ class ReplayWebSocketService {
private _clearSubscriptions(): void { private _clearSubscriptions(): void {
this.subscriptions.forEach((sub) => { this.subscriptions.forEach((sub) => {
try { sub.unsubscribe(); } catch (e) { /* ignore */ } try { sub.unsubscribe(); } catch { /* ignore */ }
}); });
this.subscriptions = []; this.subscriptions = [];
} }
@ -569,7 +569,7 @@ class ReplayWebSocketService {
this._clearSubscriptions(); this._clearSubscriptions();
if (this.client?.connected) { if (this.client?.connected) {
try { this.client.deactivate(); } catch (e) { /* ignore */ } try { this.client.deactivate(); } catch { /* ignore */ }
} }
this.client = null; this.client = null;

파일 보기

@ -167,7 +167,7 @@ workerSelf.onmessage = (e: MessageEvent<string[]>): void => {
const row = rawMessages[i].split('|'); const row = rawMessages[i].split('|');
const ship = rowToShipObject(row); const ship = rowToShipObject(row);
ships.push(ship); ships.push(ship);
} catch (_err) { } catch {
// 파싱 에러는 무시하고 계속 진행 // 파싱 에러는 무시하고 계속 진행
} }
} }