diff --git a/apps/wizarr-frontend/src/components/Dashboard/Dashboard.vue b/apps/wizarr-frontend/src/components/Dashboard/Dashboard.vue index 443e0d2ed..0b4261afa 100644 --- a/apps/wizarr-frontend/src/components/Dashboard/Dashboard.vue +++ b/apps/wizarr-frontend/src/components/Dashboard/Dashboard.vue @@ -66,6 +66,11 @@ export default defineComponent({ methods: { makeWidgets(widgets: WidgetOptions[]) { widgets.forEach((widget) => { + // TODO: Remove LatestInfo widget until we figure out firebase access + // if (widget.type == 'LatestInfo') { + // this.grid?.removeWidget(widget.id); + // } + this.makeWidget(widget); }); }, diff --git a/apps/wizarr-frontend/src/stores/dashboard.ts b/apps/wizarr-frontend/src/stores/dashboard.ts index 33243a171..49bd8abaa 100644 --- a/apps/wizarr-frontend/src/stores/dashboard.ts +++ b/apps/wizarr-frontend/src/stores/dashboard.ts @@ -7,11 +7,12 @@ interface DashboardStoreState { } const defaultDashboard: WidgetOptions[] = [ - { - id: nanoid(), - type: 'LatestInfo', - grid: { w: 6, h: 2 }, - }, + // TODO: Re-enable after we figure out firebase access + // { + // id: nanoid(), + // type: 'LatestInfo', + // grid: { w: 6, h: 2 }, + // }, { id: nanoid(), type: 'InvitesTotal', diff --git a/apps/wizarr-frontend/src/widgets/default/LatestInfo.vue b/apps/wizarr-frontend/src/widgets/default/LatestInfo.vue index f0cfa5e51..aa3795820 100644 --- a/apps/wizarr-frontend/src/widgets/default/LatestInfo.vue +++ b/apps/wizarr-frontend/src/widgets/default/LatestInfo.vue @@ -1,13 +1,15 @@ -