Skip to content

Commit ace7bce

Browse files
fix: wrong api endpoint (#1153)
1 parent 06bbe5e commit ace7bce

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/packages/sdk/concepts-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const api = {
4545
() => {},
4646
],
4747
putConceptValidList: (ids: string[]) => [
48-
`validate/${ids}`,
48+
`${ids}/validate`,
4949
{
5050
body: JSON.stringify(ids),
5151
},

src/vite-env.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ type ImportMetaEnv = {
1212
VITE_CONCEPTS_DOCUMENTATION: string
1313
VITE_OPERATIONS_DOCUMENTATION: string
1414
VITE_VALIDATION_OPERATION_SERIES_EXTRA_MANDATORY_FIELDS: string
15+
VITE_DEV_TOOLS_ENABLED: string
1516
BASE_URL: string
1617
MODE: string
1718
DEV: boolean

0 commit comments

Comments
 (0)