clawdex-mobile 3.0.0 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -525,7 +525,6 @@ export const MainScreen = forwardRef<MainScreenHandle, MainScreenProps>(
525
525
  );
526
526
  const [workspaceBrowseEntries, setWorkspaceBrowseEntries] = useState<FileSystemEntry[]>([]);
527
527
  const [loadingWorkspaceBrowse, setLoadingWorkspaceBrowse] = useState(false);
528
- const [workspaceBrowseDraft, setWorkspaceBrowseDraft] = useState('');
529
528
  const [workspaceBrowseError, setWorkspaceBrowseError] = useState<string | null>(null);
530
529
  const [chatTitleMenuVisible, setChatTitleMenuVisible] = useState(false);
531
530
  const [agentThreadMenuVisible, setAgentThreadMenuVisible] = useState(false);
@@ -1966,7 +1965,6 @@ export const MainScreen = forwardRef<MainScreenHandle, MainScreenProps>(
1966
1965
  setWorkspaceBrowsePath(normalizedPath);
1967
1966
  setWorkspaceBrowseParentPath(normalizeWorkspacePath(response.parentPath));
1968
1967
  setWorkspaceBrowseEntries(response.entries);
1969
- setWorkspaceBrowseDraft(normalizedPath ?? '');
1970
1968
  setWorkspaceBrowseError(null);
1971
1969
  } catch (err) {
1972
1970
  setWorkspaceBrowseError((err as Error).message);
@@ -1981,7 +1979,6 @@ export const MainScreen = forwardRef<MainScreenHandle, MainScreenProps>(
1981
1979
  const initialPath =
1982
1980
  preferredStartCwd ?? workspaceBrowsePath ?? workspaceBridgeRoot ?? null;
1983
1981
  setWorkspaceModalVisible(true);
1984
- setWorkspaceBrowseDraft(initialPath ?? '');
1985
1982
  void refreshWorkspaceRoots();
1986
1983
  void browseWorkspacePath(initialPath);
1987
1984
  }, [
@@ -6813,11 +6810,9 @@ export const MainScreen = forwardRef<MainScreenHandle, MainScreenProps>(
6813
6810
  currentPath={workspaceBrowsePath}
6814
6811
  parentPath={workspaceBrowseParentPath}
6815
6812
  entries={workspaceBrowseEntries}
6816
- draftPath={workspaceBrowseDraft}
6817
6813
  loadingRecent={loadingWorkspaceRoots}
6818
6814
  loadingEntries={loadingWorkspaceBrowse}
6819
6815
  error={workspaceBrowseError}
6820
- onDraftPathChange={setWorkspaceBrowseDraft}
6821
6816
  onBrowsePath={(path) => void browseWorkspacePath(path)}
6822
6817
  onSelectPath={selectDefaultWorkspace}
6823
6818
  onClose={closeWorkspaceModal}