fix(CI): fix CI errors

This commit is contained in:
zhsama
2025-10-30 16:54:17 +08:00
parent b25d379ef4
commit db744444f2
9 changed files with 11 additions and 14 deletions

View File

@ -17,13 +17,11 @@ type SubscriptionTriggerButtonProps = {
onClick?: () => void
isOpen?: boolean
className?: string
onSelect: (v: SimpleSubscription, callback?: () => void) => void
}
const SubscriptionTriggerButton: React.FC<SubscriptionTriggerButtonProps> = ({
selectedId,
onClick,
onSelect,
isOpen = false,
className,
}) => {
@ -109,7 +107,6 @@ export const SubscriptionSelectorEntry = ({ selectedId, onSelect }: {
selectedId={selectedId}
onClick={() => setIsOpen(!isOpen)}
isOpen={isOpen}
onSelect={onSelect}
/>
</div>
</PortalToFollowElemTrigger>