diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 62ac6f59..c189d953 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -3,11 +3,10 @@ name: Formateo con Prettier on: push: branches: - - '*' # Cualquier rama + - 'main' # Cualquier rama pull_request: branches: - - main - - dev + - 'main' permissions: contents: write # Permite que la acción haga push de los cambios diff --git a/app/store/components/store-setup/EcommerceSetup.tsx b/app/store/components/store-setup/EcommerceSetup.tsx index 2e6b3d2a..58dd846a 100644 --- a/app/store/components/store-setup/EcommerceSetup.tsx +++ b/app/store/components/store-setup/EcommerceSetup.tsx @@ -93,7 +93,7 @@ export function EcommerceSetup() { // Update in database await updateUserStore({ - id: currentStore.id, + storeId: currentStore.storeId, onboardingData: onboardingDataString, onboardingCompleted: allCompleted, })