Skip to content

Commit

Permalink
Ignore serverComponentChanges in pages (#41464)
Browse files Browse the repository at this point in the history
Slightly different version of #41020 where it does not end up being an unknown event.



## Bug

- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see `contributing.md`

## Feature

- [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR.
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Documentation added
- [ ] Telemetry added. In case of a feature if it's used or not.
- [ ] Errors have a helpful link attached, see `contributing.md`

## Documentation / Examples

- [ ] Make sure the linting passes by running `pnpm lint`
- [ ] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)
  • Loading branch information
timneutkens committed Oct 16, 2022
1 parent 7c2fd34 commit 7be2ef0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/next/client/dev/error-overlay/hot-dev-client.js
Expand Up @@ -260,6 +260,10 @@ function processMessage(e) {
)
return handleSuccess()
}
case 'serverComponentChanges': {
// Server component changes don't apply to `pages`.
return
}
default: {
if (customHmrEventHandler) {
customHmrEventHandler(obj)
Expand Down

0 comments on commit 7be2ef0

Please sign in to comment.