Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/credebl/studio into 109-sig…
Browse files Browse the repository at this point in the history
…nin-signup-page
  • Loading branch information
bhavanakarwade committed Sep 1, 2023
2 parents 3e93c89 + 6c6b7f8 commit 5eeac8b
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 22 deletions.
8 changes: 0 additions & 8 deletions src/components/Issuance/IssuedCrdentials.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,6 @@ const CredentialList = () => {
<DataTable header={header} data={issuedCredList} loading={loading}></DataTable>
}
</div>
<div className="flex items-center justify-end mb-4">
<Pagination
currentPage={1}
onPageChange={() => {
}}
totalPages={0}
/>
</div>
</div>) : (
<div>
<span className="block text-center p-4 m-8">There isn't any data available.</span>
Expand Down
11 changes: 0 additions & 11 deletions src/components/Verification/VerificationCredentialList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,17 +239,8 @@ const VerificationCredentialList = () => {
<div className="">
{verificationList && verificationList.length > 0 &&
<DataTable header={header} data={verificationList} loading={loading}></DataTable>

}
</div>
<div className="flex items-center justify-end mb-4">
<Pagination
currentPage={1}
onPageChange={() => {
}}
totalPages={0}
/>
</div>
</div>) : (
<div>
<span className="block text-center p-4 m-8">There isn't any data available.</span>
Expand All @@ -267,8 +258,6 @@ const VerificationCredentialList = () => {
userData={userData}
view={view}
/>


</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/organization/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const Dashboard = () => {
}

const setWalletSpinupStatus = (status: boolean) => {
setSuccess('Agent spined up successfully')
setSuccess('Wallet created successfully')
fetchOrganizationDetails()
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/organization/OrganizationDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const OrganizationDetails = ({ orgData }: { orgData: Organisation | null }) => {
className="text-base font-normal text-gray-500 truncate dark:text-gray-400 w-20 md:w-32 lg:w-40"

>
Wallet Type
Agent Type
</p>
<p className="text-base font-normal text-gray-500 truncate dark:text-gray-400">:</p>
<p
Expand Down
2 changes: 1 addition & 1 deletion src/config/pathRoutes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const pathRoutes = {
// credentials: '/organizations/credentials'
// },
documentation: {
root: '/docs'
root: 'https://docs.credebl.id'
},
schema: {
create: '/schemas',
Expand Down

0 comments on commit 5eeac8b

Please sign in to comment.