Skip to content

Commit 89f667c

Browse files
committed
fix: onboarding copy
1 parent d7171b3 commit 89f667c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/routes/console/project-[project]/overview/platforms/createAndroid.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
2727
const stepsComponents: WizardStepsType = new Map();
2828
stepsComponents.set(1, {
29-
label: 'Register your app',
29+
label: 'Register your platform',
3030
component: Step1
3131
});
3232
stepsComponents.set(2, {

src/routes/console/project-[project]/overview/platforms/createApple.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
2727
const stepsComponents: WizardStepsType = new Map();
2828
stepsComponents.set(1, {
29-
label: 'Register your app',
29+
label: 'Register your platform',
3030
component: Step1
3131
});
3232
stepsComponents.set(2, {
@@ -47,7 +47,7 @@
4747
</script>
4848

4949
<Wizard
50-
title="Add an Apple Project"
50+
title="Add an Apple platform"
5151
steps={stepsComponents}
5252
on:finish={onFinish}
5353
on:exit={onFinish}

src/routes/console/project-[project]/overview/platforms/wizard/apple/step1.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@
4848
</script>
4949

5050
<WizardStep {beforeSubmit}>
51-
<svelte:fragment slot="title">Register your Apple app</svelte:fragment>
51+
<svelte:fragment slot="title">Register your bundle ID</svelte:fragment>
5252

5353
<FormList isCommonSection>
5454
<FormItem>
55-
<p>Choose a device</p>
55+
<p>Choose an Apple platform</p>
5656
<div class="u-flex u-gap-16 u-margin-block-start-8">
5757
<Pill
5858
button

src/routes/console/project-[project]/overview/platforms/wizard/apple/step3.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ let client = Client()
2525
value={project}>Project ID</Id>
2626
</p>
2727
<Code label="Apple SDK" labelIcon="apple" language="swift" {code} withCopy withLineNumbers />
28-
<p>
28+
<p class="u-margin-block-start-24">
2929
Before sending any API calls to your new Appwrite project, make sure your device or emulator
3030
has network access to your Appwrite project's hostname or IP address.
3131
</p>

0 commit comments

Comments
 (0)