ActiveAdmin Will Not Display Delete Links

So, after finally getting ActiveAdmin to work with JSONB I started customizing it and it’s been great, but…

In the app/admin/.rb I took out :destroy in the actions setting - actions :index, :show, :update, :edit

After a lot of testing other stuff I realized being able to delete would be good so I added :destroy and…none of the pages show the delete link except admin_user.rb

I also tried config.clear_action_items! before actions :index, :show, :update, :edit, :destroy, but I still can’t see delete links.

After I made each change I restarted the server, just to make sure it wasn’t an issue with configs only loading on start up.

Anyone have any ideas as to what’s up?