Skip to content

Commit

Permalink
fix: resolved conflicts
Browse files Browse the repository at this point in the history
Signed-off-by: pranalidhanavade <[email protected]>
  • Loading branch information
pranalidhanavade committed Oct 7, 2024
2 parents ead4541 + e71a4dc commit 9c0b7eb
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/deploy-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ jobs:
- name: Clone repository
uses: actions/checkout@v3


- name: Install Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x


- name: Install Node.js
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion src/components/Verification/VerificationSchemasList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -396,4 +396,4 @@ const VerificationSchemasList = () => {
);
};

export default VerificationSchemasList;
export default VerificationSchemasList;
5 changes: 3 additions & 2 deletions src/components/organization/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ const Dashboard = () => {
const [ecoCount, setEcoCount] = useState(0);
const [error, setError] = useState<string | null>(null);
const [redirectToEndorsment, setRedirectToEndorsment] = useState<boolean>();
const [ecosystemUserRoles, setEcosystemUserRoles] = useState<string>('');



const EditOrgDetails = () => {
Expand Down Expand Up @@ -91,7 +93,6 @@ const Dashboard = () => {
}
setLoading(false);
};


const fetchEcosystems = async () => {
let organizationId = await getFromLocalStorage(storageKeys.ORG_ID);
Expand Down Expand Up @@ -349,4 +350,4 @@ const Dashboard = () => {
);
};

export default Dashboard;
export default Dashboard;
2 changes: 2 additions & 0 deletions src/components/organization/DeleteOrganization.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -307,11 +307,13 @@ const DeleteOrganizations = () => {
setError(null);
}}
/>

{ecosystemRoles.length > 0 &&
<h2 className="mb-4 dark:text-white">
You are Ecosystem Lead for <strong>{ecosystemRoles.join(', ')}</strong>. You cannot remove yourself from the ecosystem, delete the organization's wallet, and delete your organization.
</h2>
}

{organizationData && (
<div>
{cardData.map((card, index) => (
Expand Down
3 changes: 2 additions & 1 deletion src/components/organization/interfaces/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ export interface ILedgerItem {
deletedAt: string | null;
}


export interface IOrgCount {
verificationRecordsCount: number;
connectionRecordsCount: number;
Expand All @@ -265,4 +266,4 @@ export interface ILedgerItem {
createDateTime: string;
lastChangedDateTime: string;
deletedAt: string | null;
}
}

0 comments on commit 9c0b7eb

Please sign in to comment.