File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed
src/notebooks/deepnote/integrations Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -163,15 +163,14 @@ export class IntegrationManager implements IIntegrationManager {
163163
164164 if ( integrationType === 'pandas-dataframe' ) {
165165 logger . debug ( `IntegrationManager: Skipping internal DuckDB integration ${ selectedIntegrationId } ` ) ;
166- return ;
166+ } else {
167+ integrations . set ( selectedIntegrationId , {
168+ config : config || null ,
169+ status : config ? IntegrationStatus . Connected : IntegrationStatus . Disconnected ,
170+ integrationName,
171+ integrationType
172+ } ) ;
167173 }
168-
169- integrations . set ( selectedIntegrationId , {
170- config : config || null ,
171- status : config ? IntegrationStatus . Connected : IntegrationStatus . Disconnected ,
172- integrationName,
173- integrationType
174- } ) ;
175174 }
176175
177176 if ( integrations . size === 0 ) {
You can’t perform that action at this time.
0 commit comments