Skip to content

Commit

Permalink
formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
k-anshul committed Dec 14, 2023
1 parent 5958dc1 commit 16659b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web-common/src/features/sources/sourceUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function compileCreateSourceYAML(
delete values.table;
break;
case "duckdb":
let db = values.db as string;
const db = values.db as string;

Check failure on line 43 in web-common/src/features/sources/sourceUtils.ts

View workflow job for this annotation

GitHub Actions / build

Unexpected lexical declaration in case block
if (db.startsWith("md:")) {
connectorName = "motherduck";
values.db = db.replace("md:", "");
Expand Down

0 comments on commit 16659b9

Please sign in to comment.