This commit is contained in:
2025-08-26 20:27:30 +02:00
parent 135e73691b
commit 994151374e
82 changed files with 10 additions and 148 deletions

View File

@@ -53,7 +53,6 @@ const PluginIframe: React.FC<PluginIframeProps> = ({
].filter(Boolean);
if (!allowedOrigins.some(origin => event.origin.startsWith(origin))) {
console.warn('Rejected message from unauthorized origin:', event.origin);
return;
}
@@ -84,7 +83,6 @@ const PluginIframe: React.FC<PluginIframeProps> = ({
break;
}
} catch (err) {
console.error('Error processing plugin message:', err);
}
};