diff --git a/src/main.tsx b/src/main.tsx index ada42879b..83b18b5d5 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -117,7 +117,7 @@ function getCwdStr(remote : RemoteType, state : FeStateType) : string { if ((state == null || state.cwd == null) && remote != null) { return "~"; } - let cwd = "(unknown)"; + let cwd = "?"; if (state && state.cwd) { cwd = state.cwd; }