Remove debugger statements

This commit is contained in:
Simon Larsen 2024-02-22 12:43:45 +00:00
parent f328b38b1f
commit a9293f272b
No known key found for this signature in database
GPG Key ID: AB45983AA9C81CDE
2 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ export class Statement implements BaseQueryParams {
finalValue = v.value.value;
} else if (v.value instanceof Includes) {
if (v.type === TableColumnType.Text || v.type === TableColumnType.ObjectID) {
debugger;
finalValue = v.value.values.map((val: string | ObjectID) => {
return `${val.toString()}`;
})

View File

@ -405,7 +405,7 @@ export default class StatementGenerator<TBaseModel extends AnalyticsBaseModel> {
}
}
debugger;
return whereStatement;
}