Fix TUI imports after ui module was pulled one level up (#4515)

This commit is contained in:
Softer 2026-05-04 03:39:06 +03:00
parent dfccd1ab09
commit c0f023495d
1 changed files with 2 additions and 2 deletions

View File

@ -364,7 +364,7 @@ def share_install_log() -> int:
header += 'The uploaded paste is public.\n\n'
header += 'Continue?'
from archinstall.tui.ui.components import tui
from archinstall.tui.components import tui
confirmed: bool = tui.run(lambda: _confirm_share(header))
@ -391,7 +391,7 @@ def share_install_log() -> int:
async def _confirm_share(header: str) -> bool:
from archinstall.lib.menu.helpers import Confirmation
from archinstall.tui.ui.menu_item import MenuItemGroup
from archinstall.tui.menu_item import MenuItemGroup
result = await Confirmation(
group=MenuItemGroup.yes_no(),