remove debugging code

This commit is contained in:
Red Adaya 2024-05-01 09:22:46 +08:00
parent f2e31a6483
commit af32c8f6f3

View File

@ -142,7 +142,6 @@ class InputModel {
giveFocus(): void { giveFocus(): void {
// Override active view to the main input if aux view does not have focus // Override active view to the main input if aux view does not have focus
const activeAuxView = this.getAuxViewFocus() ? this.getActiveAuxView() : null; const activeAuxView = this.getAuxViewFocus() ? this.getActiveAuxView() : null;
console.log("activeAuxView", activeAuxView);
mobx.action(() => { mobx.action(() => {
switch (activeAuxView) { switch (activeAuxView) {
case appconst.InputAuxView_History: { case appconst.InputAuxView_History: {