mirror of
https://github.com/WebBreacher/WhatsMyName.git
synced 2025-06-18 14:25:31 -04:00
Fix incorrect comparison logic
This commit is contained in:
parent
5048141bbd
commit
f2d6001505
3
.github/workflows/sort-format-json.yml
vendored
3
.github/workflows/sort-format-json.yml
vendored
@ -26,7 +26,8 @@ jobs:
|
||||
const dataPath = 'wmn-data.json';
|
||||
const schemaPath = 'wmn-data-schema.json';
|
||||
|
||||
const data = JSON.parse(fs.readFileSync(dataPath, 'utf8'));
|
||||
const original = fs.readFileSync(dataPath, 'utf8');
|
||||
const data = JSON.parse(original);
|
||||
const schema = JSON.parse(fs.readFileSync(schemaPath, 'utf8'));
|
||||
|
||||
// ---------- Sorting Helpers ----------
|
||||
|
Loading…
Reference in New Issue
Block a user