I installed livewire-powergridin my project. So far everything works well except the header and action buttons.
I am getting an undefined where the button is supposed to be rendered.

Also. In my console I can see some errors. Belonging to Alpine
This is how I have loaded files in my resources/app.js
import './bootstrap';
import flatpickr from "flatpickr";
window.flatpickr = flatpickr;
import flatpickr from 'flatpickr';
import 'flatpickr/dist/flatpickr.min.css';
import './../../vendor/power-components/livewire-powergrid/dist/powergrid';
import './../../vendor/power-components/livewire-powergrid/dist/bootstrap5.css';
What Could be the issue? I read that alpine should not be loaded when using livewire because it imports it automatically
