{description}
diff --git a/src/components/platform-entry/PlatformEntryFlowShellImpl.tsx b/src/components/platform-entry/PlatformEntryFlowShellImpl.tsx
index e934ad04..443b3a8b 100644
--- a/src/components/platform-entry/PlatformEntryFlowShellImpl.tsx
+++ b/src/components/platform-entry/PlatformEntryFlowShellImpl.tsx
@@ -365,6 +365,7 @@ import type { CustomWorldProfile } from '../../types';
import { useAuthUi } from '../auth/AuthUiContext';
import { PlatformActionButton } from '../common/PlatformActionButton';
import { PlatformFieldLabel } from '../common/PlatformFieldLabel';
+import { PlatformStatusDialog } from '../common/PlatformStatusDialog';
import { PlatformStatusMessage } from '../common/PlatformStatusMessage';
import { PlatformSubpanel } from '../common/PlatformSubpanel';
import { PublishShareModal } from '../common/PublishShareModal';
@@ -16996,19 +16997,30 @@ export function PlatformEntryFlowShellImpl({
}}
/>
) : null}
-
setDraftGenerationPointNotice(null)}
- confirmLabel="知道了"
+ showHeader
+ showCloseButton
closeOnBackdrop
- size="sm"
overlayClassName={`platform-theme ${platformThemeClass} !items-center`}
panelClassName="platform-remap-surface rounded-[1.75rem]"
+ iconClassName={
+ draftGenerationPointNotice?.title === '读取泥点余额失败'
+ ? undefined
+ : 'bg-amber-100/80 text-amber-600'
+ }
+ action={{
+ label: '知道了',
+ onClick: () => setDraftGenerationPointNotice(null),
+ surface: 'platform',
+ }}
>
{draftGenerationPointNotice?.message}
-
+
-
{workNotFoundRecoveryDialog?.message}
-
+
void;
}) {
return (
-
- {message}
-
+ />
);
}