Skip to content

Commit b75c3e5

Browse files
authored
non-null type assertion (#1486)
(#1477 (review))
1 parent f0e45f1 commit b75c3e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/loader-airtable/src/data/penguins.csv.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const {AIRTABLE_PAT, AIRTABLE_DB} = process.env;
66

77
Airtable.configure({apiKey: AIRTABLE_PAT});
88

9-
const base = Airtable.base(AIRTABLE_DB as string);
9+
const base = Airtable.base(AIRTABLE_DB!);
1010

1111
const data: any[] = [];
1212

0 commit comments

Comments
 (0)