Form Actions\Action everything null

Brain fart? Why is everything returning null or []. This is within a form schema()
\Filament\Forms\Components\Actions::make([
    \Filament\Forms\Components\Actions\Action::make('add_note')
        ->label('Add Note')
        ->action(function ($data, $record, $get, $form) {
            ray($data)->label('data');
            ray($record)->label('record note');
            $note = $get('note');
            ray($note)->label('note');
            ray($form)->label('form');
        })
        ->button(),
]),
Was this page helpful?