Skip to content

Commit

Permalink
hotfix: disable cache
Browse files Browse the repository at this point in the history
  • Loading branch information
k0stik committed Oct 19, 2022
1 parent b9cef4a commit 06bfb51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/JsonToSimpleSchema.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ export default class JsonToSimpleSchema {
const schemaId = this.jsonSchema?.schemaId;
const properties = getJsonSchemaProperties(this.jsonSchema);

if (schemaId && schemaCache.has(schemaId)) {
return schemaCache.get(schemaId);
}
// if (schemaId && schemaCache.has(schemaId)) {
// return schemaCache.get(schemaId);
// }

const simpleSchemaEntries = Object.entries(properties).reduce(
(accumulatedEntries, [propertyName, jsonProperty]) => {
Expand Down

0 comments on commit 06bfb51

Please sign in to comment.