We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e39dd1 commit f39b5e7Copy full SHA for f39b5e7
1 file changed
tests/integration/rsc-mf/remote/src/components/registerServerCallback.ts
@@ -13,7 +13,9 @@ export function registerRemoteServerCallback(remoteOrigin: string) {
13
}
14
15
const remoteActionUrl = new URL('/', remoteOrigin).toString();
16
+ console.log(`[rsc-mf] registerRemoteServerCallback -> ${remoteActionUrl}`);
17
setServerCallback(async (id, args) => {
18
+ console.log(`[rsc-mf] remote callback action id -> ${id}`);
19
const temporaryReferences = createTemporaryReferenceSet();
20
const response = fetch(remoteActionUrl, {
21
method: 'POST',
0 commit comments