Type fixes

This commit is contained in:
Storme-bit
2026-04-05 06:42:30 -07:00
parent 6084efeea4
commit 8765dc3c2d
2 changed files with 100 additions and 4 deletions

View File

@@ -74,7 +74,7 @@ function getRelationshipsByEntity(entityId) {
}
// Delete a specific relationship by (from_id, to_id, label)
function deleteRelationship(fromid, toId, label) {
function deleteRelationship(fromId, toId, label) {
const db = getDB();
db.prepare(`DELETE FROM relationships WHERE from_id = ? AND to_id = ? AND label = ?`).run(fromId, toId, label);