Fix typo in send_project_description

This commit is contained in:
mijauexe
2025-03-21 10:28:12 +01:00
parent fa5cd49aeb
commit 7f05d9c367

View File

@@ -576,7 +576,7 @@ class IPCClientUI(UIBase):
await self._send(MessageType.LOADING_FINISHED)
async def send_project_description(self, state: dict):
await self._send(MessageType.PROJECT_DESCRIPTION, content=dict)
await self._send(MessageType.PROJECT_DESCRIPTION, content=state)
async def send_features_list(self, features: list[str]):
await self._send(MessageType.FEATURES_LIST, content={"featuresList": features})