Fix error "No module named 'ui.ui_state'"

Was unable to run locally at tips due to an import not including the package name.
This commit is contained in:
Russell Schmidt
2025-04-23 17:02:47 -05:00
committed by GitHub
parent 78f0775ad5
commit 7fc1cbc3a9
+1 -1
View File
@@ -1,4 +1,4 @@
from ui.ui_state import ChatUIState, InterfaceState, AppState
from contact.ui.ui_state import ChatUIState, InterfaceState, AppState
ui_state = ChatUIState()
interface_state = InterfaceState()