Problem when trying to enter Cart
Run clive for the first time with mainnet:
- do onboarding (profile name: 'marek', password 'marek'; hive account: 'itwasntme')
- exit
clive
Run clive again:
- create transfer ('gtg', 1 HBD, 'memo')
- add to Cart
- exit
clive
Run clive again:
- go to Operations screen
- go to Cart
clive exits with:
╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮
│ /home/haf_admin/.cache/pypoetry/virtualenvs/clive-ppKYZ8Av-py3.10/lib/python3.10/site-packages/t │
│ extual/widget.py:3329 in _on_compose │
│ │
│ 3326 │ │
│ 3327 │ async def _on_compose(self) -> None: │
│ 3328 │ │ try: │
│ ❱ 3329 │ │ │ widgets = [*self._nodes, *compose(self)] │
│ 3330 │ │ except TypeError as error: │
│ 3331 │ │ │ raise TypeError( │
│ 3332 │ │ │ │ f"{self!r} compose() method returned an invalid result; {error}" │
│ │
│ /home/hived/hive/clive/clive/__private/ui/shared/base_screen.py:19 in compose │
│ │
│ 16 class BaseScreen(CliveScreen[None], AbstractClassMessagePump): │
│ 17 │ def compose(self) -> ComposeResult: │
│ 18 │ │ yield Header() │
│ ❱ 19 │ │ yield from self.create_main_panel() │
│ 20 │ │ yield Footer() │
│ 21 │ │
│ 22 │ @abstractmethod │
│ │
│ /home/hived/hive/clive/clive/__private/ui/operations/cart.py:235 in create_main_panel │
│ │
│ 232 │ def create_main_panel(self) -> ComposeResult: │
│ 233 │ │ with ViewBag(): │
│ 234 │ │ │ with StaticPart(): │
│ ❱ 235 │ │ │ │ yield BigTitle("operations cart") │
│ 236 │ │ │ │ yield CartHeader() │
│ 237 │ │ │ │
│ 238 │ │ │ with self.__scrollable_part: │
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
NotAContainer: Can't add children to <class 'clive.__private.ui.widgets.big_title.BigTitle'> widgets