diff --git a/src/modules/market/views/StallView.vue b/src/modules/market/views/StallView.vue
index e557d14..28425e8 100644
--- a/src/modules/market/views/StallView.vue
+++ b/src/modules/market/views/StallView.vue
@@ -130,6 +130,13 @@
@add-to-cart="handleAddToCart"
/>
+
+
+
+
@@ -147,7 +154,7 @@ import {
SelectTrigger,
SelectValue,
} from '@/components/ui/select'
-import { ArrowLeft, Store, X } from 'lucide-vue-next'
+import { ArrowLeft, Store, X, ShoppingCart } from 'lucide-vue-next'
import FuzzySearch from '@/components/ui/fuzzy-search/FuzzySearch.vue'
import ProductGrid from '../components/ProductGrid.vue'
import type { Product, Stall } from '../types/market'
@@ -273,6 +280,10 @@ const handleAddToCart = (product: Product, quantity?: number) => {
marketStore.addToStallCart(product, quantity || 1)
}
+const viewCart = () => {
+ router.push('/cart')
+}
+
const viewStall = (otherStallId: string) => {
if (otherStallId !== stallId.value) {