Skip to content

Commit

Permalink
Fix bug on remove data
Browse files Browse the repository at this point in the history
  • Loading branch information
jbcr authored Nov 20, 2024
1 parent 95ac85f commit 0963c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Api/ContentDataPersister.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ public function persist($data, array $context = []): void

public function remove($data, array $context = []): void
{
$this->decorated->persist($data, $context);
$this->decorated->remove($data, $context);
}
}

0 comments on commit 0963c5f

Please sign in to comment.