We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b07ec45 commit 51f3331Copy full SHA for 51f3331
2 files changed
chat2db-client/src/main/index.js
@@ -79,7 +79,7 @@ app.on('before-quit', () => {
79
'Content-Type': 'application/json',
80
},
81
method: 'POST',
82
- url: `${baseUrl}/api/system/stop?forceQuit=true`,
+ url: `${baseUrl}/api/system/stop?forceQuit=${_forceQuitCode}`,
83
});
84
request.end();
85
} catch (error) {}
chat2db-client/src/store/setting/index.ts
@@ -24,7 +24,7 @@ const initSetting = {
24
aiSqlSource: AIType.CHAT2DBAI,
25
26
hasWhite: false,
27
- holdingService: true,
+ holdingService: false,
28
}
29
30
export const useSettingStore: UseBoundStoreWithEqualityFn<StoreApi<ISettingState>> = createWithEqualityFn(
0 commit comments