diff --git a/src/Fieldtypes/SeoProFieldtype.php b/src/Fieldtypes/SeoProFieldtype.php index c4ea4962..eb9aa276 100755 --- a/src/Fieldtypes/SeoProFieldtype.php +++ b/src/Fieldtypes/SeoProFieldtype.php @@ -4,7 +4,6 @@ use Statamic\Contracts\Entries\Entry; use Statamic\Contracts\Taxonomies\Term; -use Statamic\Facades\Blink; use Statamic\Facades\Blueprint; use Statamic\Facades\GraphQL; use Statamic\Fields\Fields as BlueprintFields; @@ -49,22 +48,18 @@ public function process($data) protected function fields() { - return Blink::once('seo-pro::blueprint-fields', function () { - return new BlueprintFields($this->fieldConfig()); - }); + return new BlueprintFields($this->fieldConfig()); } protected function fieldConfig() { - return Blink::once('seo-pro::blueprint-fields-config', function () { - $parent = $this->field()->parent(); - - if (! ($parent instanceof Entry || $parent instanceof Term)) { - $parent = null; - } - - return SeoProFields::new($parent ?? null)->getConfig(); - }); + $parent = $this->field()->parent(); + + if (! ($parent instanceof Entry || $parent instanceof Term)) { + $parent = null; + } + + return SeoProFields::new($parent ?? null)->getConfig(); } public function augment($data)