fix(build): remove unused settingsStore import after time-budget change
Some checks are pending
CI / Backend (Python) (push) Waiting to run
CI / Frontend (Vue) (push) Waiting to run
Mirror / mirror (push) Waiting to run

This commit is contained in:
pyr0ball 2026-05-11 12:37:24 -07:00
parent 3f4b756fc6
commit ac4eda2047

View file

@ -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'