Skip to content

Commit

Permalink
FIX: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremiahUy committed Dec 6, 2024
1 parent f66a99a commit 4fc0b96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class RisikoscenarioRepoCustom {
private final NamedParameterJdbcTemplate jdbcTemplate;

public List<Risikoscenario> findByKravNummer(String kravNummer) {
var query = "select id from risikoscenario where data #> '{relvanteKravNummerList}' @> :kravnummerList::jsonb";
var query = "select id from risikoscenario where data #> '{relevanteKravNummer}' @> :kravnummerList::jsonb";
var par = new MapSqlParameterSource();
par.addValue("kravnummerList", String.format("[\"%s\"]", kravNummer));
return fetch(jdbcTemplate.queryForList(query, par));
Expand Down
1 change: 1 addition & 0 deletions apps/frontend/src/setupProxy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* eslint-disable @typescript-eslint/no-var-requires */
// eslint-disable-next-line @typescript-eslint/no-require-imports
const { createProxyMiddleware } = require('http-proxy-middleware')

// Used in local development server only
Expand Down

0 comments on commit 4fc0b96

Please sign in to comment.