mirror of
https://github.com/k1tbyte/Wand-Enhancer.git
synced 2026-08-28 17:01:04 +00:00
fix: bump version to 1.0.9.4, update changelog
This commit is contained in:
@@ -3,7 +3,6 @@ import { useCallback, useEffect, useMemo, useReducer, useRef } from 'react';
|
||||
import { type CheatSchema, type InstalledAppSummary } from '../../protocol/messages';
|
||||
import { normalizeCheatValue } from '../trainer/model/values';
|
||||
import { RemoteSessionClient } from './remote-session.client';
|
||||
import { localizeTrainerMeta } from './remote-session.i18n';
|
||||
import {
|
||||
createInitialRemoteSessionState,
|
||||
EConnectionStatus,
|
||||
@@ -63,10 +62,6 @@ export function useRemoteSession() {
|
||||
onMessage: (message) => {
|
||||
const action = protocolAction(message);
|
||||
if (!action) return;
|
||||
if (action.type === 'trainerMeta') {
|
||||
void localizeTrainerMeta(action.payload).then((payload) => dispatch({ ...action, payload }));
|
||||
return;
|
||||
}
|
||||
dispatch(action);
|
||||
},
|
||||
onClose: () => {
|
||||
|
||||
Reference in New Issue
Block a user