c9ceabc27d
Fixed "Requested unknown parameter '1' for row 0, column 1" error by adding explicit column definitions to the DataTable initialization. The issue occurred because DataTables was initialized without column definitions, but data was being added as arrays. DataTables needs explicit column configuration to properly map array data to columns. Changes: - Added "columns" configuration to DataTable initialization - Defined all 4 columns with proper titles - Set "orderable: false" for Actions column This fixes the popup error that appeared when visiting /users/1/pay 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>