feat: enhance ProductDetailPage to support partial data loading and improve user feedback with loading descriptions

This commit is contained in:
sebseb7
2025-08-05 15:48:56 +02:00
parent 0a7f7e653b
commit 9f707737b4
5 changed files with 138 additions and 16 deletions

View File

@@ -4,8 +4,8 @@ import { io } from 'socket.io-client';
class SocketManager {
constructor() {
this.socket = io('', {
transports: ["websocket"],
autoConnect: false
transports: ["websocket", "polling"],
autoConnect: false
});
this.emit = this.emit.bind(this);