Skip to content
Merged
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
2 changes: 1 addition & 1 deletion e2e/fixtures/fs-router/src/functions/say-hello.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import { SayHello } from '../components/say-hello.js';

export function sayHello() {
export async function sayHello() {
const promise = new Promise<string>((resolve) =>
setTimeout(() => resolve('React'), 1000),
);
Expand Down
1 change: 0 additions & 1 deletion e2e/fixtures/rsc-basic/modules/ai/src/server.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
'use server';
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah it's okay. I think I added this because we cant detect correctly before

import { InternalProvider } from './shared.js';
import { jsx } from 'react/jsx-runtime';

Expand Down
Loading