Update TaskWorkspace component to conditionally render queue status based on final submission state, improving user feedback during task processing.
Some checks failed
platform/bro-js/challenge-pl/pipeline/head There was a failure building this commit

This commit is contained in:
Primakov Alexandr Alexandrovich 2025-11-04 11:52:42 +03:00
parent 4c88e7d19a
commit bb31cc5c6c

View File

@ -47,7 +47,7 @@ export const TaskWorkspace = ({ task, onTaskComplete }: TaskWorkspaceProps) => {
</Box> </Box>
{/* Статус проверки */} {/* Статус проверки */}
{queueStatus && ( {queueStatus && !finalSubmission && (
<Box borderWidth="1px" borderRadius="lg" borderColor="blue.200" bg="blue.50" p={4}> <Box borderWidth="1px" borderRadius="lg" borderColor="blue.200" bg="blue.50" p={4}>
<HStack> <HStack>
<Spinner size="md" color="blue.500" /> <Spinner size="md" color="blue.500" />