Rebuild time

This commit is contained in:
Frikky
2025-08-27 11:16:21 +02:00
parent 5b335f86f2
commit a65ad252c2
7 changed files with 46 additions and 9 deletions
@@ -131,8 +131,15 @@ const WorkflowGenerationModal = (props) => {
.then((response) => {
return response.json().then((json) => {
if (response.status !== 200) {
toast.error(json.message || "Unexpected response. Please contact support@shuffler.io if this persists.");
toast.error(json.reason || "Unexpected response. Please contact support@shuffler.io if this persists.", {
autoClose: 10000,
onClick: () => {
window.open("/docs/AI#self-hosting-models", "_blank")
}
})
setIsAiEditing(false);
return null;
}
@@ -265,4 +272,4 @@ const WorkflowGenerationModal = (props) => {
);
};
export default WorkflowGenerationModal;
export default WorkflowGenerationModal;