💄 Change export results progress bar color

This commit is contained in:
Baptiste Arnaud 2025-02-14 18:48:48 +01:00
parent 8b329feaea
commit 8ea15d5bb8
No known key found for this signature in database

View File

@ -166,7 +166,11 @@ export const ExportAllResultsModal = ({ isOpen, onClose }: Props) => {
{isExportLoading && (
<Stack>
<Text>Fetching all results...</Text>
<Progress value={exportProgressValue} borderRadius="md" />
<Progress
value={exportProgressValue}
borderRadius="md"
colorScheme="orange"
/>
</Stack>
)}
</ModalBody>