rez_core 4.0.179 → 4.0.180

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "4.0.179",
3
+ "version": "4.0.180",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -185,9 +185,7 @@ export class ModuleAccessService {
185
185
  // Step 3: If level_type is SCH, check school status using raw query
186
186
  if (level_type === 'SCH') {
187
187
  const result = await this.dataSource.query(
188
- `SELECT * FROM sso_school WHERE id = ${level_id}`,
189
- [String(level_id)],
190
- );
188
+ `SELECT * FROM sso_school WHERE id = ${level_id}`);
191
189
 
192
190
  const school = result?.[0];
193
191
  console.log('step 3', school);