Hello I am trying to create an action with solidstart but i get the following error. Here is my code: ```ts export default function Test() { const test = action(async () => { "use server"; console.log("test"); }, "test"); onMount(() => test()); return <h1>test</h1>; } ```