Skip to content

Commit

Permalink
fix(core): fix input params bug
Browse files Browse the repository at this point in the history
fix input params bug
  • Loading branch information
simeng-li committed Jul 31, 2024
1 parent e417ee1 commit 333b879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/queries/application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export const createApplicationQueries = (pool: CommonQueryMethods) => {
id: string,
set: Partial<OmitAutoSetFields<CreateApplication>>,
jsonbMode: 'merge' | 'replace' = 'merge'
) => updateApplication({ set, where: { id }, jsonbMode: 'merge' });
) => updateApplication({ set, where: { id }, jsonbMode });

const countAllApplications = async () =>
countApplications({
Expand Down

0 comments on commit 333b879

Please sign in to comment.