diff --git a/src/main.tsx b/src/main.tsx
index b6018055..3a2839ce 100644
--- a/src/main.tsx
+++ b/src/main.tsx
@@ -8,7 +8,7 @@ import cn from "classnames";
import {debounce, throttle} from "throttle-debounce";
import {v4 as uuidv4} from "uuid";
import dayjs from "dayjs";
-import type {SessionDataType, LineType, CmdDataType, RemoteType, RemoteStateType, RemoteInstanceType, RemotePtrType, HistoryItem, HistoryQueryOpts, RemoteEditType, ContextMenuOpts, BookmarkType, RenderModeType, ClientMigrationInfo, LineFactoryProps} from "./types";
+import type {SessionDataType, LineType, CmdDataType, RemoteType, RemoteStateType, RemoteInstanceType, RemotePtrType, HistoryItem, HistoryQueryOpts, RemoteEditType, ContextMenuOpts, BookmarkType, RenderModeType, LineFactoryProps} from "./types";
import type * as T from "./types";
import localizedFormat from 'dayjs/plugin/localizedFormat';
import {GlobalModel, GlobalCommandRunner, Session, Cmd, ScreenLines, Screen, riToRPtr, TabColors, RemoteColors} from "./model";
@@ -1711,11 +1711,7 @@ class ClientStopModal extends React.Component<{}, {}> {
render() {
let model = GlobalModel;
let cdata = model.clientData.get();
- let mdata : ClientMigrationInfo = (cdata != null ? cdata.migration : null);
let title = "Client Not Ready";
- if (mdata != null) {
- title = "Migrating Data";
- }
return (
@@ -1727,15 +1723,6 @@ class ClientStopModal extends React.Component<{}, {}> {
Cannot get client data.
-
- Client database is being migrated to the latest version, please wait.
-
-
- {mdata.migrationpos}/{mdata.migrationtotal}
-
-