File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed
apps/sim/stores/panel/copilot Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -2737,12 +2737,16 @@ export const useCopilotStore = create<CopilotStore>()(
27372737 } ) )
27382738 }
27392739
2740- get ( ) . loadSensitiveCredentialIds ( ) . catch ( ( err ) => {
2741- logger . warn ( '[Copilot] Failed to load sensitive credential IDs' , err )
2742- } )
2743- get ( ) . loadAutoAllowedTools ( ) . catch ( ( err ) => {
2744- logger . warn ( '[Copilot] Failed to load auto-allowed tools' , err )
2745- } )
2740+ get ( )
2741+ . loadSensitiveCredentialIds ( )
2742+ . catch ( ( err ) => {
2743+ logger . warn ( '[Copilot] Failed to load sensitive credential IDs' , err )
2744+ } )
2745+ get ( )
2746+ . loadAutoAllowedTools ( )
2747+ . catch ( ( err ) => {
2748+ logger . warn ( '[Copilot] Failed to load auto-allowed tools' , err )
2749+ } )
27462750
27472751 let newMessages : CopilotMessage [ ]
27482752 if ( revertState ) {
You can’t perform that action at this time.
0 commit comments