Fixes https://github.com/twentyhq/twenty/issues/20840 ## Summary - Fix the AI tools factory (`view-filter-tools.factory.ts`) description that incorrectly described SELECT filter values as plain strings, causing agents to write values like `"CLOSED_LOST"` instead of the required array format `["CLOSED_LOST"]` This led to production crashes when later trying to update/delete select options on fields that had view filters created by AI agents with invalid format. ## Test plan - No behavior change in existing code — only the tool description is updated to guide AI agents correctly - Manual: confirm AI agents now create SELECT filters with array values