fix(build): remove unused settingsStore import after time-budget change
This commit is contained in:
parent
3f4b756fc6
commit
ac4eda2047
1 changed files with 0 additions and 2 deletions
|
|
@ -716,7 +716,6 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref, computed, onMounted, onUnmounted, nextTick, watch } from 'vue'
|
import { ref, computed, onMounted, onUnmounted, nextTick, watch } from 'vue'
|
||||||
import { useRecipesStore } from '../stores/recipes'
|
import { useRecipesStore } from '../stores/recipes'
|
||||||
import { useSettingsStore } from '../stores/settings'
|
|
||||||
import { useInventoryStore } from '../stores/inventory'
|
import { useInventoryStore } from '../stores/inventory'
|
||||||
import { useSavedRecipesStore } from '../stores/savedRecipes'
|
import { useSavedRecipesStore } from '../stores/savedRecipes'
|
||||||
import RecipeDetailPanel from './RecipeDetailPanel.vue'
|
import RecipeDetailPanel from './RecipeDetailPanel.vue'
|
||||||
|
|
@ -748,7 +747,6 @@ const streamError = ref<string | null>(null)
|
||||||
|
|
||||||
const recipesStore = useRecipesStore()
|
const recipesStore = useRecipesStore()
|
||||||
const inventoryStore = useInventoryStore()
|
const inventoryStore = useInventoryStore()
|
||||||
const settingsStore = useSettingsStore()
|
|
||||||
|
|
||||||
// Tab state
|
// Tab state
|
||||||
type TabId = 'find' | 'browse' | 'saved' | 'community' | 'build'
|
type TabId = 'find' | 'browse' | 'saved' | 'community' | 'build'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue