diff --git a/app/components/Launcher.vue b/app/components/Launcher.vue
index cfe071e4..18dfff13 100644
--- a/app/components/Launcher.vue
+++ b/app/components/Launcher.vue
@@ -5,8 +5,13 @@ import { Status } from "@ogw_front/utils/status";
import { appMode } from "@ogw_front/utils/local/app_mode";
import { useInfraStore } from "@ogw_front/stores/infra";
-const { logo } = defineProps({
+const { logo, appName } = defineProps({
logo: {
+ type: String,
+ required: false,
+ default: "",
+ },
+ appName: {
type: String,
required: true,
},
@@ -31,7 +36,7 @@ if (infraStore.app_mode !== appMode.CLOUD) {
-
+
diff --git a/app/components/Loading.vue b/app/components/Loading.vue
index 1440fb4a..b389e407 100644
--- a/app/components/Loading.vue
+++ b/app/components/Loading.vue
@@ -1,9 +1,13 @@
@@ -17,7 +18,7 @@ const { versions_schema } = defineProps({
-
+