1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13: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 1982c3f21f
commit 1349082fc6

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) {