Fix Modal not raising when hitting the 5 item limit

This commit is contained in:
Rapptz 2025-08-24 09:41:49 -04:00
parent 753db1724b
commit 9677dada1f

View File

@ -235,3 +235,8 @@ class Modal(BaseView):
}
return payload
def add_item(self, item: Item[Any]) -> Self:
if len(self._children) >= 5:
raise ValueError('maximum number of children exceeded (5)')
return super().add_item(item)