import { apps } from "app/src/webapp" import { getState } from "@/session" export default function () { const state = getState() if (!state) return { error: "no state" } return { html: apps().map(app => app === state.project ? `${app}` : app).join(" ") } }