From 5ee83210293c228b658e73ee86e548cc0c591ebf Mon Sep 17 00:00:00 2001 From: padreug Date: Tue, 6 Jan 2026 18:48:57 +0100 Subject: [PATCH] Remove duplicate toast message on store creation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The CreateStoreDialog already shows a success toast with helpful message. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/modules/market/components/MerchantStore.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/modules/market/components/MerchantStore.vue b/src/modules/market/components/MerchantStore.vue index 1a5b4dd..381fcae 100644 --- a/src/modules/market/components/MerchantStore.vue +++ b/src/modules/market/components/MerchantStore.vue @@ -654,7 +654,6 @@ const checkMerchantProfile = async () => { // Event handlers const onStoreCreated = async (_stall: Stall) => { await loadStallsList() - toast.success('Store created successfully!') } const onProductCreated = async (_product: Product) => {