$this->app->bind(Authenticatable::class, Organizer::class); to a service provider, otherwise the Import model could not resolve the "user". Is this intended?Filament::tenant() within the resolveRecord method, but this resolves to NULL. I think the reason is I'm using Horizon (Redis) as queue and Filament::tenant() only works on request lifecycle. How can I associate the current tenant to an imported record?public function resolveRecord(): ?Participant
{
$participant = Participant::firstOrNew([
'email' => $this->data['email'],
]);
$participant->trial_id = $this->options['tenant_id'];
return $participant;
}