Skip to content

Commit

Permalink
MOSIP-36144: UI Development Partner Admin Tabular View of uploaded ce…
Browse files Browse the repository at this point in the history
…rtificates

Signed-off-by: Anil_Kumar_Majji <[email protected]>
  • Loading branch information
Anil-kumar-Majji committed Dec 12, 2024
1 parent 7541bbf commit 48d1661
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import Pagination from "../../common/Pagination";
import RootTrustCertificateTab from "./RootTrustCertificateTab";
import EmptyList from "../../common/EmptyList";

function RootCertificateList({certificateType}) {
function CertificatesList({certificateType}) {

const { t } = useTranslation();
const navigate = useNavigate();
Expand Down Expand Up @@ -322,4 +322,4 @@ function RootCertificateList({certificateType}) {
)
}

export default RootCertificateList;
export default CertificatesList;
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import RootCertificateList from './RootCertificateList';
import CertificatesList from './CertificatesList';

function IntermediateRootTrustCertificatesList() {
return (
<RootCertificateList
<CertificatesList
certificateType='intermediate'
/>
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import RootCertificateList from "./RootCertificateList";
import CertificatesList from "./CertificatesList";

function RootTrustCertificatesList() {

return (
<RootCertificateList
<CertificatesList
certificateType = 'root'
/>
)
Expand Down

0 comments on commit 48d1661

Please sign in to comment.