Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjaiyan-dev committed Oct 27, 2023
1 parent 47a0e08 commit bac5c44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/server/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ if (EXPORT_DOCS) {
{ data: columns, error: columnsError },
{ data: relationships, error: relationshipsError },
{ data: functions, error: functionsError },
{ data: types, error: typesError }
{ data: types, error: typesError },
] = await Promise.all([
pgMeta.schemas.list(),
pgMeta.tables.list({
Expand Down Expand Up @@ -74,8 +74,8 @@ if (EXPORT_DOCS) {
pgMeta.types.list({
includeArrayTypes: true,
includeSystemSchemas: true,
})
]);
}),
])
await pgMeta.end()

if (schemasError) {
Expand Down

0 comments on commit bac5c44

Please sign in to comment.