We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75b3157 commit e607ea4Copy full SHA for e607ea4
src/routes/(console)/onboarding/create-project/+page.svelte
@@ -1,5 +1,6 @@
1
<script lang="ts">
2
import { Card, Layout, Button } from '@appwrite.io/pink-svelte';
3
+ import { Form } from '$lib/elements/forms';
4
import { isCloud } from '$lib/system';
5
import { sdk } from '$lib/stores/sdk';
6
import { ID, Region } from '@appwrite.io/console';
@@ -97,7 +98,7 @@
97
98
class="u-only-dark"
99
alt="Appwrite Logo" />
100
<Card.Base variant="primary" padding="l">
- <form on:submit|preventDefault={createProject}>
101
+ <Form noStyle onSubmit={createProject}>
102
<CreateProject
103
showTitle
104
bind:projectName
@@ -112,7 +113,7 @@
112
113
</Layout.Stack>
114
{/snippet}
115
</CreateProject>
- </form>
116
+ </Form>
117
</Card.Base>
118
{/if}
119
</div>
0 commit comments