Skip to content

Commit

Permalink
Fix incomplete yarn.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
mat02 authored and ludomikula committed Sep 3, 2024
1 parent ad11dd1 commit 722480d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/node-service/src/plugins/firebirdsql/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async function prepareQueryParameters(stmt: string, parameters: object) {

const placeholdersInStmt = stmt.matchAll(re);

let parametersArray = [];
let parametersArray: any[] = [];

for(const match of placeholdersInStmt) {
const paramName: string = match[2];
Expand Down

0 comments on commit 722480d

Please sign in to comment.