Skip to content

Commit d6a3f56

Browse files
committed
fix unknown integration type handling
1 parent 76a26b4 commit d6a3f56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/notebooks/deepnote/sqlCellStatusBarProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ export class SqlCellStatusBarProvider implements NotebookCellStatusBarItemProvid
381381
case IntegrationType.BigQuery:
382382
return l10n.t('BigQuery');
383383
default:
384-
return type;
384+
return String(type);
385385
}
386386
}
387387
}

0 commit comments

Comments
 (0)