You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/error-codes/codes.json
+16-2Lines changed: 16 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -568,5 +568,19 @@
568
568
"580": "Server Function has too many bound arguments. Received %s but the limit is %s.",
569
569
"581": "BigInt is too large. Received %s digits but the limit is %s.",
570
570
"582": "Referenced Blob is not a Blob.",
571
-
"583": "The current renderer does not support view transitions. This error is likely caused by a bug in React. Please file an issue."
572
-
}
571
+
"583": "The current renderer does not support view transitions. This error is likely caused by a bug in React. Please file an issue.",
572
+
"584": "Attempted to load a Server Reference outside the hosted root.",
573
+
"585": "Invalid server action: %s",
574
+
"586": "No server callback has been registered. Call setServerCallback to register one.",
575
+
"587": "Server actions must be functions",
576
+
"588": "Could not find the module \"%s\" in the React Server Consumer Manifest. This is probably a bug in the React Server Components bundler.",
577
+
"589": "Could not find the module \"%s\" in the React Server Manifest. This is probably a bug in the React Server Components bundler.",
578
+
"590": "Cannot await or return from a thenable. You cannot await a client module from a server component.",
579
+
"591": "Cannot access %s on the server. You cannot dot into a client module from a server component. You can only pass the imported name through.",
580
+
"592": "Cannot assign to a client module from a server module.",
581
+
"593": "Attempted to call the default export of %s from the server but it's on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.",
582
+
"594": "Cannot read Symbol exports. Only named exports are supported on a client module imported on the server.",
583
+
"595": "Attempted to call %s() from the server but %s is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.",
584
+
"596": "Could not find the module \"%s\" in the React Client Manifest. This is probably a bug in the React Server Components bundler.",
585
+
"597": "The module \"%s\" is marked as an async ESM module but was loaded as a CJS proxy. This is probably a bug in the React Server Components bundler."
0 commit comments