fix client creation

This commit is contained in:
Casey 2025-12-13 08:23:03 -06:00
parent 0d7976b140
commit 0c1bb52f1b
9 changed files with 305 additions and 161 deletions

View file

@ -1,7 +1,6 @@
<script setup>
import { IconoirProvider } from "@iconoir/vue";
import SideBar from "./components/SideBar.vue";
import CompanySelector from "./components/CompanySelector.vue";
import { watchEffect, onMounted, ref } from "vue";
import { useCompanyStore } from "@/stores/company";
import { useThemeStore } from "@/stores/theme";
@ -48,7 +47,6 @@ watchEffect(() => {
>
<div id="snw-ui">
<div class="sidebar-column">
<CompanySelector />
<SideBar />
</div>
<div id="display-content">
@ -84,7 +82,7 @@ watchEffect(() => {
width: 100%;
margin: 10px auto;
height: 90vh;
background: linear-gradient(145deg, var(--theme-surface) 0%, var(--theme-surface-alt) 60%);
background: var(--theme-gradient);
}
.sidebar-column {