1
0
Fork 0
mirror of synced 2024-07-07 15:25:52 +12:00

use local param instead of global params on application page

This commit is contained in:
kevmodrome 2020-04-02 17:01:19 +02:00
parent 129cdbb1a6
commit 91a8b37421

View file

@ -2,17 +2,18 @@
import { store } from "builderStore"
import { fade } from "svelte/transition"
import { isActive, goto, url, context, params } from "@sveltech/routify"
import { isActive, goto, url, context } from "@sveltech/routify"
import { SettingsIcon, PreviewIcon } from "components/common/Icons/"
import IconButton from "components/common/IconButton.svelte"
// Get Package and set store
export let application
let promise = getPackage()
async function getPackage() {
const res = await fetch(`/_builder/api/${$params.application}/appPackage`)
const res = await fetch(`/_builder/api/${application}/appPackage`)
const pkg = await res.json()
if (res.ok) {