chore: build
Backend - Build & Lint / build (push) Canceled after 30m0s
Frontend Admin - EAS Build / build (push) Successful in 1h30m40s
Frontend Client - EAS Build / build (push) Successful in 1h25m40s
Frontend Web - Build & Lint / build (push) Failing after 5m56s

This commit is contained in:
Xor290
2026-09-10 19:44:23 +02:00
parent a7fe98830b
commit 4fbed720e8
4 changed files with 1 additions and 4 deletions
-1
View File
@@ -18,7 +18,6 @@ func (d *Database) CheckAddress(addressByUser *models.Command) error {
return fmt.Errorf("checkAddress: %w", result.Error)
}
// Pas de correspondance exacte — fallback sur une comparaison normalisée
// (accents/casse/espaces) pour rattraper les variantes mineures de saisie.
corrections, err := d.AllAddress()
if err != nil {
@@ -48,7 +48,6 @@ import { useAlert } from "../../hooks/useAlert";
// --------------------------------------------------
// Types
// --------------------------------------------------
interface UserItem {
id: number;
username: string;
+1 -1
View File
@@ -30,7 +30,7 @@ interface ProductCardProps {
category: string;
prices?: Array<{ quantity: number; price: number; active_price?: boolean }>;
hasVideo?: boolean;
videoUrl?: string; // ✨ Nouveau prop pour l'URL de la vidéo
videoUrl?: string;
categoryColor?: string;
coming_soon?: boolean;
}
@@ -128,7 +128,6 @@ export function NotificationProvider({ children }: { children: ReactNode }) {
}
}, []);
// Polling toutes les 15 secondes
useEffect(() => {
fetchNotifications();
const interval = setInterval(fetchNotifications, 15000);