We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 303b6f7 commit 0867ee1Copy full SHA for 0867ee1
app/client/src/pages/DataGenerator/Finish.tsx
@@ -322,12 +322,14 @@ const Finish = () => {
322
const rawData = genDatasetResp !== null && hasTopics(genDatasetResp) ?
323
getRawData(genDatasetResp) : genDatasetResp?.results
324
325
+ console.log('Finish >> ', isDemo);
326
+
327
return (
328
<div>
329
<Title level={2}>
330
<Flex align='center' gap={10}>
331
<CheckCircleIcon style={{ color: '#178718' }}/>
- {'Success'}
332
+ {isDemo ? 'Success' : 'Job Successfully Started'}
333
</Flex>
334
</Title>
335
{isDemo ? (
0 commit comments