Merge pull request #2 from appwrite-labs/feat-remove-getting-started-illustrations
Remove bottom left illustrations from getting started wizards
|
Before Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 30 KiB |
@@ -4,14 +4,8 @@
|
||||
import { WizardStep } from '$lib/layout';
|
||||
import { sdk } from '$lib/stores/sdk';
|
||||
import { createPlatform } from '../store';
|
||||
import { wizard } from '$lib/stores/wizard';
|
||||
import { app } from '$lib/stores/app';
|
||||
import Light from './light.svg';
|
||||
import Dark from './dark.svg';
|
||||
import { Submit, trackEvent } from '$lib/actions/analytics';
|
||||
|
||||
$wizard.media = $app.themeInUse === 'dark' ? Dark : Light;
|
||||
|
||||
const projectId = $page.params.project;
|
||||
|
||||
async function beforeSubmit() {
|
||||
|
||||
|
Before Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 35 KiB |
@@ -5,14 +5,8 @@
|
||||
import { WizardStep } from '$lib/layout';
|
||||
import { sdk } from '$lib/stores/sdk';
|
||||
import { createPlatform } from '../store';
|
||||
import { wizard } from '$lib/stores/wizard';
|
||||
import { app } from '$lib/stores/app';
|
||||
import Light from './light.svg';
|
||||
import Dark from './dark.svg';
|
||||
import { Submit, trackEvent } from '$lib/actions/analytics';
|
||||
|
||||
$wizard.media = $app.themeInUse === 'dark' ? Dark : Light;
|
||||
|
||||
enum Platform {
|
||||
iOS = 'apple-ios',
|
||||
macOS = 'apple-macos',
|
||||
|
||||
|
Before Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 32 KiB |
@@ -5,14 +5,8 @@
|
||||
import { WizardStep } from '$lib/layout';
|
||||
import { sdk } from '$lib/stores/sdk';
|
||||
import { createPlatform } from '../store';
|
||||
import { wizard } from '$lib/stores/wizard';
|
||||
import { app } from '$lib/stores/app';
|
||||
import Light from './light.svg';
|
||||
import Dark from './dark.svg';
|
||||
import { Submit, trackEvent } from '$lib/actions/analytics';
|
||||
|
||||
$wizard.media = $app.themeInUse === 'dark' ? Dark : Light;
|
||||
|
||||
enum Platform {
|
||||
Android = 'flutter-android',
|
||||
Ios = 'flutter-ios',
|
||||
|
||||
|
Before Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 32 KiB |
@@ -5,17 +5,12 @@
|
||||
import { FormList, InputText } from '$lib/elements/forms';
|
||||
import { WizardStep } from '$lib/layout';
|
||||
import { sdk } from '$lib/stores/sdk';
|
||||
import { wizard } from '$lib/stores/wizard';
|
||||
import { createPlatform } from '../store';
|
||||
import { app } from '$lib/stores/app';
|
||||
import Light from './light.svg';
|
||||
import Dark from './dark.svg';
|
||||
import { Submit, trackEvent } from '$lib/actions/analytics';
|
||||
|
||||
const projectId = $page.params.project;
|
||||
const suggestions = ['*.vercel.app', '*.netlify.app', '*.gitpod.io'];
|
||||
|
||||
$wizard.media = $app.themeInUse === 'dark' ? Dark : Light;
|
||||
async function beforeSubmit() {
|
||||
if ($createPlatform.$id) {
|
||||
await sdk.forConsole.projects.updatePlatform(
|
||||
|
||||