diff --git a/src/Livewire/Concerns/WithFields.php b/src/Livewire/Concerns/WithFields.php index 7ac774e5..1ec7c679 100644 --- a/src/Livewire/Concerns/WithFields.php +++ b/src/Livewire/Concerns/WithFields.php @@ -62,7 +62,6 @@ protected function makeFieldFromModel(StatamicField $field): Field : throw new \Exception("The field model binding for fieldtype [{$fieldtype}] cannot be found."); } - #[Computed] public function honeypot(): Honeypot { return $this->fields->whereInstanceOf(Honeypot::class)->first(); diff --git a/src/Livewire/Synthesizers/FieldSynth.php b/src/Livewire/Synthesizers/FieldSynth.php index 5c1a938e..08de5909 100644 --- a/src/Livewire/Synthesizers/FieldSynth.php +++ b/src/Livewire/Synthesizers/FieldSynth.php @@ -49,6 +49,6 @@ public function get(&$target, $key) public function set(&$target, $key, $value) { - $target->get($key)->value($value); + $target->value($value); } }