Skip to content

Commit

Permalink
Dump an additional store
Browse files Browse the repository at this point in the history
  • Loading branch information
dokempf committed Sep 24, 2024
1 parent db10131 commit efb80c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/App.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script>
import { Button, Heading, Input, Label, MultiSelect, Select } from "flowbite-svelte";
import { easydbInstanceStore, easydbInstanceDataStore, easydbInstanceDataPromiseStore, easydbTokenPromiseStore, masksToRenderStore, userTokenStore, uuidStore, viewerPanelStateStore } from "./lib/stores";
import { appLanguageStore, easydbInstanceStore, easydbInstanceDataStore, easydbInstanceDataPromiseStore, easydbTokenPromiseStore, masksToRenderStore, userTokenStore, uuidStore, viewerPanelStateStore } from "./lib/stores";
import EasyDbDetailView from "./components/EasyDBDetailView.svelte";
let uuid = "859e2318-32f6-4013-8468-ef8cec0b581b";
Expand All @@ -23,6 +23,7 @@
$: userTokenStore.set(token);
function dumpStores() {
console.log("appLanguageStore: ", $appLanguageStore);
console.log("easydbInstanceStore: ", $easydbInstanceStore);
console.log("easydbInstanceDataStore: ", $easydbInstanceDataStore);
console.log("easydbInstanceDataPromiseStore: ", $easydbInstanceDataPromiseStore);
Expand Down

0 comments on commit efb80c5

Please sign in to comment.