This commit is contained in:
2026-04-21 00:48:17 +08:00
parent 75944b1f1f
commit effe0355bd
19 changed files with 2897 additions and 180 deletions

View File

@@ -135,12 +135,12 @@ export function CustomWorldCreationHub({
key={item.workId}
item={item}
onClick={() => {
if (item.status === 'draft' && item.sessionId) {
if (item.sourceType === 'agent_session' && item.sessionId) {
onResumeDraft(item.sessionId);
return;
}
if (item.status === 'published' && item.profileId) {
if (item.profileId) {
onEnterPublished(item.profileId);
}
}}