From b6e7833079d7e14e6a9fce91396ff5fbe7c0f925 Mon Sep 17 00:00:00 2001 From: EnixCoda Date: Wed, 4 Mar 2020 00:31:58 +0800 Subject: [PATCH] Chore: nicer error message --- src/driver/core/SideBar.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver/core/SideBar.ts b/src/driver/core/SideBar.ts index 97d6a51..c3ed21a 100644 --- a/src/driver/core/SideBar.ts +++ b/src/driver/core/SideBar.ts @@ -142,7 +142,7 @@ export const handleError: BoundMethodCreator<[Error]> = dispatch => async err => dispatch.call(setShowSettings, true) } else { DOMHelper.markGitakoReadyState(false) - dispatch.call(setError, 'Gitako ate a bug, but it should recovery soon!') + dispatch.call(setError, 'Some thing went wrong.') throw err } }