ed838fd804
Problem: When a meeting was flagged external, the row was tinted red (pink bg + red number box — desired) but the title cell text and the attendee list text were also forced to red (#b91c1c), which the user did not want. Change (artifacts/tx-os/src/pages/executive-meetings.tsx): - Meeting title cell: always use navy text (#0B1E3F) instead of switching to red on meeting.isExternal. - Attendee list <ul>: always use navy text (#0B1E3F) instead of switching to red on externalText. - Removed the now-dead `externalText` prop end-to-end (call-site value, type declaration, and destructured default) to keep typecheck clean. Unchanged: the red row tint, red number box, and all external-meeting behavior (e.g. auto-postpone rules). Internal/virtual meetings unaffected. Verified: tx-os typecheck passes; HMR applied with no console errors.