Skip to content

Commit

Permalink
♻️ [HomeView] Now conditionally rendering ManagerDebug
Browse files Browse the repository at this point in the history
  • Loading branch information
beefchimi committed Jan 22, 2024
1 parent d6408b2 commit 4228b0d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/website/src/views/HomeView.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<script setup lang="ts">
import {SynthTypeValues} from '@/types';
import {ManagerControls, StackControls} from '@/sections';
import {useDebugStore} from '@/store';
import {ManagerDebug, ManagerControls, StackControls} from '@/sections';
const debugging = useDebugStore();
// TODO: Necessary so we can split our layout into two separate
// "grid column" wrappers. Required until we have support for
Expand All @@ -13,6 +16,7 @@ const entries = [column1, column2];

<template>
<main class="HomeView">
<ManagerDebug v-if="debugging" />
<ManagerControls />

<section class="Stacks">
Expand Down

0 comments on commit 4228b0d

Please sign in to comment.