Fix websocket message.

This commit is contained in:
SergeantPanda 2025-07-18 15:14:11 -05:00
parent e876af1aa2
commit d926d90dd9

View file

@ -421,7 +421,7 @@ export const WebsocketProvider = ({ children }) => {
case 'logo_processing_summary':
notifications.show({
title: 'Logo Processing Summary',
message: `Logo processing complete: ${parsedEvent.data.processed} logos processed, ${parsedEvent.data.duplicates_merged} duplicates merged.`,
message: `${parsedEvent.data.message}`,
color: 'blue',
autoClose: 5000,
});