diff --git a/src/components/PublishPopup/index.tsx b/src/components/PublishPopup/index.tsx index 7cb4139..4ba5158 100644 --- a/src/components/PublishPopup/index.tsx +++ b/src/components/PublishPopup/index.tsx @@ -31,32 +31,34 @@ export default function PublishPopup({ visible, onClose, onSelect }: PublishPopu round rootPortal onClose={onClose} - closeable overlayStyle={{ backgroundColor: 'rgba(0,0,0,0.5)' }} > - - - 发布 - 选择你要发布的内容类型 + + + 发布 + 选择你要发布的内容类型 - - {PUBLISH_OPTIONS.map((option) => ( - onSelect(option)} - > - {option.icon} - - {option.label} - {option.desc} - + {PUBLISH_OPTIONS.map((option) => ( + onSelect(option)} + > + {option.icon} + + {option.label} + {option.desc} - ))} - - - 取消 - + + ))} )