From c3d07223f76fe1e774c8a537f0dbb334578d11ff Mon Sep 17 00:00:00 2001 From: sawka Date: Tue, 28 Feb 2023 17:51:17 -0800 Subject: [PATCH] change unknown to question mark --- src/main.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.tsx b/src/main.tsx index ada42879..83b18b5d 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; }