Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix typo in server-rendering pages
  • Loading branch information
yairopro authored Apr 27, 2025
commit eab7cab5ad0c76e8ecf4da6502ea746a576b5a15
2 changes: 1 addition & 1 deletion versioned_docs/version-5.x/server-rendering.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ function NotFound() {
const status = React.useContext(StatusCodeContext);

if (status) {
staus.code = 404;
status.code = 404;
}

return (
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-6.x/server-rendering.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function NotFound() {
const status = React.useContext(StatusCodeContext);

if (status) {
staus.code = 404;
status.code = 404;
}

return (
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-7.x/server-rendering.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ function NotFound() {
const status = React.useContext(StatusCodeContext);

if (status) {
staus.code = 404;
status.code = 404;
}

return (
Expand Down