refactor: update breadcrumb navigation in dashboard and file view pages

This commit is contained in:
Yashwin 2026-04-10 18:24:47 +05:30
parent f51e0af9c8
commit 5e15326c29
2 changed files with 2 additions and 2 deletions

View File

@ -293,7 +293,7 @@ const Dashboard = (): ReactElement => {
return ( return (
<Layout <Layout
currentPage="Dashboard" currentPage="Dashboard"
breadcrumbs={[{ label: "QAssure - Tenant" }, { label: "Dashboard" }]} // breadcrumbs={[{ label: "QAssure - Tenant" }, { label: "Dashboard" }]}
pageHeader={{ pageHeader={{
title: "Tenant Overview", title: "Tenant Overview",
description: "Key quality metrics and performance indicators.", description: "Key quality metrics and performance indicators.",

View File

@ -378,7 +378,7 @@ const FileView = (): ReactElement => {
<Layout <Layout
currentPage="File Attachment Services" currentPage="File Attachment Services"
breadcrumbs={[ breadcrumbs={[
{ label: "File Attachment Services", path: "/tenant/files" }, { label: "QAssure", path: "/" },
{ label: "File List", path: "/tenant/files" }, { label: "File List", path: "/tenant/files" },
{ label: file.original_name }, { label: file.original_name },
]} ]}