diff --git a/src/components/molecules/InterpretationButtons.tsx b/src/components/molecules/InterpretationButtons.tsx index bb83cdb4..9d983761 100644 --- a/src/components/molecules/InterpretationButtons.tsx +++ b/src/components/molecules/InterpretationButtons.tsx @@ -1,4 +1,4 @@ -import { Box, Button, Stack, Typography } from "@mui/material"; +import { Box, Button, Stack, Typography, CircularProgress } from "@mui/material"; import { PlayCircle } from "@mui/icons-material"; import React, { useCallback, useEffect, useState } from "react"; import { interpretCurrentRecording, stopCurrentInterpretation } from "../../api/recording"; @@ -139,7 +139,9 @@ export const InterpretationButtons = ({ enableStepping }: InterpretationButtonsP disabled={info.running} sx={{ display: 'grid' }} > - {info.running ? 'Extracting data...please wait' : 'Get Preview of Output Data'} + {info.running ? + Extracting data...please wait for 10secs to 1min + : 'Get Preview of Output Data'} { }}