From f7aefd87e4199e103821670ebd58e9569fec9024 Mon Sep 17 00:00:00 2001 From: balvarez Date: Wed, 31 Dec 2025 17:19:38 +0100 Subject: [PATCH] version 1.0.0 --- src/package.json | 2 +- src/src/config/orderFormConfig.jsx | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/package.json b/src/package.json index 9c9241f..4878024 100644 --- a/src/package.json +++ b/src/package.json @@ -1,7 +1,7 @@ { "name": "web-app", "type": "module", - "version": "0.0.1", + "version": "1.0.0", "private": true, "scripts": { "dev": "vite --host :: --port 3000", diff --git a/src/src/config/orderFormConfig.jsx b/src/src/config/orderFormConfig.jsx index 70f787c..2539e27 100644 --- a/src/src/config/orderFormConfig.jsx +++ b/src/src/config/orderFormConfig.jsx @@ -1,6 +1,6 @@ import React from 'react'; import { ShoppingBag, Edit2, Music, Send } from 'lucide-react'; - export const STRIPE_PUBLISHABLE_KEY = import.meta.env.VITE_STRIPE_PUBLISHABLE_KEY_DEV; + export const STRIPE_PUBLISHABLE_KEY = import.meta.env.VITE_STRIPE_PUBLISHABLE_KEY; export const products = [ { @@ -38,15 +38,15 @@ import React from 'react'; stripePriceId: 'price_1RVTXtEPL3QASpovaWjXf30q', description: 'Un texte de chanson unique, écrit sur mesure pour vous.', imageUrl: 'https://files.dites-le-en-chanson.fr/products/texte-personalise.jpg' - }, - { - id: 'prod_SQMCFqFLaNHxx0', - name: 'Test', - price: 17.90, - promotionPrice: null, - stripePriceId: 'price_1RVVUBERAUBjYKpgYuQyuI76', - description: 'Un texte de chanson unique, écrit sur mesure pour vous.', - imageUrl: 'https://files.dites-le-en-chanson.fr/products/texte-personalise.jpg' + // }, + // { + // id: 'prod_SQMCFqFLaNHxx0', + // name: 'Test', + // price: 17.90, + // promotionPrice: null, + // stripePriceId: 'price_1RVVUBERAUBjYKpgYuQyuI76', + // description: 'Un texte de chanson unique, écrit sur mesure pour vous.', + // imageUrl: 'https://files.dites-le-en-chanson.fr/products/texte-personalise.jpg' } ];