Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Protofy-xyz/Protofy
Browse files Browse the repository at this point in the history
  • Loading branch information
ap0k4 committed Jul 9, 2024
2 parents ddbf506 + 771589e commit c87bfa8
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion packages/protolib/src/bundles/devices/devices/devicesPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,23 @@ const MqttTest = ({ onSetStage, onSetModalFeedback, compileSessionId, stage }) =
});
} else {
onSetModalFeedback({
message: `Compiling...`,
message: (
<YStack height="50px" gap="$2">
<Paragraph>Compiling firmware: </Paragraph>
{
messages.length > 0 && (
<Paragraph
height={"100px"}
>
{messages
.filter((msg) => Object.keys(msg).length === 1)
.map((msg) => msg.message)
.slice(-1)[0]}
</Paragraph>
)
}
</YStack>
),
details: { error: false }
});
isDoneCompiling = true
Expand Down

0 comments on commit c87bfa8

Please sign in to comment.