diff --git a/src/lib/components/Recipies/machines/recipeMachine.ts b/src/lib/components/Recipies/machines/recipeMachine.ts
index 2798391..97a7ed4 100644
--- a/src/lib/components/Recipies/machines/recipeMachine.ts
+++ b/src/lib/components/Recipies/machines/recipeMachine.ts
@@ -1,6 +1,5 @@
// src/lib/components/Recipies/machines/authMachine.ts
import { createMachine } from 'xstate';
-import { formMachine } from './formMachine';
export const recipeMachine = createMachine(
{
diff --git a/src/lib/components/examples/HelloEarth.svelte b/src/lib/components/examples/HelloEarth.svelte
deleted file mode 100644
index 2347aac..0000000
--- a/src/lib/components/examples/HelloEarth.svelte
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-{#if isStoreLoaded}
-
-
- {#if $store.title}{$store.title}{/if}
-
-
- {#if $store.description}{$store.description}{/if}
-
-
Wallet Address
- {#if $store.pkpWallet}
-
{$store.pkpWallet.address}
- {/if}
-
-
store: hello (init default)
- {#if $store.hello}{$store.hello}{/if}
-
map: hello2 : "@hello:helloMapMe"
- {#if $store.hello2}{$store.hello2}{/if}
-
-
map: "todos": "@data:queryTodos"
- {#if $store.todos}
-
- {#each $store.todos as todo}
-
-
- - {todo.text}
-
-
- {/each}
-
- {/if}
-
-{:else}
-
-{/if}
diff --git a/src/lib/components/examples/UserForm.svelte b/src/lib/components/examples/UserForm.svelte
deleted file mode 100644
index caf9b8e..0000000
--- a/src/lib/components/examples/UserForm.svelte
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
diff --git a/src/lib/components/maschines/SignIn.svelte b/src/lib/components/maschines/SignIn.svelte
deleted file mode 100644
index 9f01321..0000000
--- a/src/lib/components/maschines/SignIn.svelte
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-{#if $state.matches('notSignedIn')}
-
-{:else if $state.matches('email')}
-
-
-
- {#if errors.email}{$errors.email}{/if}
-
-
-{:else if $state.matches('name')}
-
-
-
- {#if errors.name}{$errors.name}{/if}
-
-
-{:else if $state.matches('signedIn')}
- account signed in
-{/if}
diff --git a/src/lib/components/maschines/signInMachine.ts b/src/lib/components/maschines/signInMachine.ts
deleted file mode 100644
index 5324dab..0000000
--- a/src/lib/components/maschines/signInMachine.ts
+++ /dev/null
@@ -1,35 +0,0 @@
-// src/lib/components/machines/SignInMachine.ts
-import { createMachine, assign } from 'xstate';
-
-export const SignInMachine = createMachine({
- id: 'signIn',
- initial: 'notSignedIn',
- context: {
- email: '',
- name: ''
- },
- states: {
- notSignedIn: {
- on: { START: 'email' }
- },
- email: {
- on: {
- NEXT: {
- target: 'name',
- actions: assign({ email: (_, event) => event.value })
- }
- }
- },
- name: {
- on: {
- NEXT: {
- target: 'signedIn',
- actions: assign({ name: (_, event) => event.value })
- }
- }
- },
- signedIn: {
- type: 'final'
- }
- }
-});
\ No newline at end of file
diff --git a/src/lib/components/refactor/ComposerForm.svelte b/src/lib/components/refactor/ComposerForm.svelte
index dda5c9f..275343c 100644
--- a/src/lib/components/refactor/ComposerForm.svelte
+++ b/src/lib/components/refactor/ComposerForm.svelte
@@ -70,6 +70,7 @@
+ My ID is: {$me.id}
My state is: {$me.state}
{#if $successMessage}