Undefined index: value Quill text editor

After watching this video I copied the entire thing second by second but there seems to be an issue in the last livewire release. Anybody has any ideas what can cause this Undefined Error

         <label for="description_EN" class="block text-sm font-medium text-gray-700">
                  Description
         </label>
         <div class="mt-1" wire:ignore>
                  <div                    
                      x-data
                      name="content"
                      x-ref="quillEditor"
                      x-init="
                        quill = new Quill($refs.quillEditor, {theme: 'snow'});
                           quill.on('text-change', function () {
                                $dispatch('input', quill.root.innerHTML);
                            });
                          "
                         wire:model.debounce.2000ms="description_EN"
                        >
                        {!! $description_EN !!}
                  </div>
                </div>

The Error I cant seem to get pass