We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff1d518 commit b4d7ce4Copy full SHA for b4d7ce4
1 file changed
apps/api/src/instrument-records/instrument-records.service.ts
@@ -291,7 +291,7 @@ export class InstrumentRecordsService {
291
292
const sessionId = session.id;
293
294
- const parseResult = instrument.validationSchema.safeParse(this.parseJson(data));
+ const parseResult = instrument.validationSchema.safeParse(this.parseJson(rawData));
295
if (!parseResult.success) {
296
console.error(parseResult.error.issues);
297
throw new UnprocessableEntityException(
0 commit comments