React Daily: Dev Warning Crash and Search Shortcut Fix

Two focused fixes improve React's development experience: one stops the hook dependency warning from crashing on Symbol values, and another adds Control F support to DevTools search. Together they clear long-standing friction in dev mode with no runtime behavior change.

Duration: PT2M10S

Episode overview

This episode is a short developer briefing from React Daily.

It explains recent repository work in plain language.

  • Show: React Daily
  • Published: 2026-09-24T06:00:34Z
  • Audio duration: PT2M10S

Transcript excerpt

This excerpt keeps the crawler page concise. Listen to the episode or use the RSS feed for the full update.

Good morning, it's Thursday, September 24th, 2026, and this is React Daily.

Today's work is all about development experience — two narrow fixes that stop the tooling itself from getting in your way. Both came from the same contributor, and each closes a report that has been open for years.

First, a reliability fix for hook warnings. When a hook's dependency list changes size between renders, React logs a development warning that lists the old and new values. If that list contained a symbol, the warning itself crashed with a type error, because the standard join operation cannot convert symbols to…

Second, a cross-platform usability fix in developer tools. The component search box only responded to Command F, which on Windows and Linux maps to the operating system key and is usually intercepted, leaving those users with no working shortcut. Pull request 37680 also accepts Control F, matching how other tool…

What's next: watch for these to land, and expect low release risk since neither changes runtime or public API behavior. If you maintain custom lint or warning checks, confirm you handle symbol values the same way to avoid a similar crash in your own diagnostics.

That's it for today…

Nearby episodes from React Daily

  1. Compiler Async Fix and Server Reliability
  2. Controlled Form Reset and View Transition Errors
  3. Weekly Recap - Compiler Parity and Hydration Preservation
  4. Compiler Edge Cases and Safer Property Checks
  5. Compiler Correctness Fixes Take Center Stage
  6. Fizz Streaming Gets a Hydration Fix Pile-Up
  7. Closing the Gap Between Rust and JavaScript
  8. Compiler Purity Gets Stricter, Flight Gets More Flexible