File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed
frontend/src/components/pages Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -228,9 +228,20 @@ export function Dashboard() {
228
228
{ loading ? (
229
229
< div className = "text-center text-gray-500" > Loading...</ div >
230
230
) : callMetrics . length === 0 ? (
231
- < div className = "text-center text-gray-500" >
232
- No call recordings found
233
- </ div >
231
+ < >
232
+ < div className = "text-center text-gray-500" >
233
+ No call recordings found.{ " \n" }
234
+ </ div >
235
+ < div className = "flex justify-center items-center m-3" >
236
+ < Button
237
+ onClick = { ( ) => {
238
+ navigate ( "/dashboard/analysis" ) ;
239
+ } }
240
+ >
241
+ Start Here
242
+ </ Button > { " " }
243
+ </ div >
244
+ </ >
234
245
) : (
235
246
< div className = "grid gap-6 md:grid-cols-2 lg:grid-cols-3" >
236
247
{ callMetrics . map ( renderMetricCard ) }
You can’t perform that action at this time.
0 commit comments