Commit bc1a31f
- Fix missing format specifier in renderApplication invariant (#56329)
Summary:
The `invariant` call in `renderApplication` passes `rootTag` as a substitution argument, but the format string has no `%s` placeholder. When the invariant fails, the error message reads:
```
Expect to have a valid rootTag, instead got
```
instead of:
```
Expect to have a valid rootTag, instead got null
```
The value is silently dropped, making the error less useful for debugging.
## Changelog:
[General] [Fixed] - Fix missing format specifier in renderApplication invariant
Pull Request resolved: #56329
Test Plan:
- Verified with `invariant` directly: without `%s` the third argument is ignored, with `%s` it is substituted into the message.
- Prettier and ESLint checks pass.
Reviewed By: cipolleschi
Differential Revision: D104657367
Pulled By: javache
fbshipit-source-id: 6b0fad2371941207ef064fa7ea63cdf9aa61ae7f1 parent 535b844 commit bc1a31f
1 file changed
Lines changed: 1 addition & 1 deletion
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
50 | | - | |
| 50 | + | |
51 | 51 | | |
52 | 52 | | |
53 | 53 | | |
| |||
0 commit comments