1
0
Fork 0
mirror of synced 2024-07-03 13:30:46 +12:00

remove backendUiStore imports

This commit is contained in:
Keviin Åberg Kultalahti 2021-03-23 14:01:28 +01:00
parent 5deceb7928
commit a40a13af93
2 changed files with 2 additions and 4 deletions

View file

@ -10,7 +10,7 @@
import api, { get } from "builderStore/api"
import Form from "@svelteschool/svelte-forms"
import Spinner from "components/common/Spinner.svelte"
import { API, Info, User } from "./Steps"
import { Info, User } from "./Steps"
import Indicator from "./Indicator.svelte"
import { Button } from "@budibase/bbui"
import { goto } from "@sveltech/routify"
@ -24,8 +24,6 @@
export let template
let lastApiKey
let fetchApiKeyPromise
const infoValidation = {
applicationName: string().required("Your application must have a name."),

View file

@ -1,5 +1,5 @@
<script>
import { store, automationStore, backendUiStore } from "builderStore"
import { store, automationStore } from "builderStore"
import { roles } from 'builderStore/store/backend/'
import { Button } from "@budibase/bbui"
import SettingsLink from "components/settings/Link.svelte"