Skip to content

Commit 3b4881a

Browse files
committed
clean up debug code
1 parent a8aafdf commit 3b4881a

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

web/components/DummyServerSwitcher.vue

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ const store = useDummyServerStore();
66
const { selector, serverState } = storeToRefs(store);
77
88
const updateSelector = (val: string) => {
9-
console.log('typeof selector', typeof selector);
10-
console.log('new dummy server state:', val);
119
selector.value = val;
1210
};
1311
</script>
@@ -19,10 +17,6 @@ const updateSelector = (val: string) => {
1917
<summary>Initial Server State: {{ selector }}</summary>
2018
<pre>{{ JSON.stringify(serverState, null, 4) }}</pre>
2119
</details>
22-
<!-- <select v-model="selector">
23-
<option value="default">Default</option>
24-
<option value="oemActivation">OEM Activation</option>
25-
</select> -->
2620
<Select v-model="selector" @update:model-value="updateSelector">
2721
<SelectTrigger>
2822
<SelectValue placeholder="Select an initial state" />

0 commit comments

Comments
 (0)