Skip to content

Commit

Permalink
Merge pull request #2 from appwrite-labs/feat-remove-getting-started-…
Browse files Browse the repository at this point in the history
…illustrations

Remove bottom left illustrations from getting started wizards
  • Loading branch information
stnguyen90 authored Sep 20, 2023
2 parents 5d64391 + 9ece808 commit 7fe41e9
Show file tree
Hide file tree
Showing 12 changed files with 0 additions and 1,738 deletions.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 7fe41e9

Please sign in to comment.