Skip to content

Commit

Permalink
Fix: Broken images for fria and ornen organisations
Browse files Browse the repository at this point in the history
Signed-off-by: George J Padayatti <george.padayatti@igrant.io>
  • Loading branch information
georgepadayatti committed Apr 12, 2024
1 parent 999b1ff commit 1ded946
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/views/company-views/components/landing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -359,11 +359,11 @@ export const LandingPage = () => {
break;
case ORNEN_ID:
issuer = 'Örnen'
logo = 'https://staging-api.igrant.io/v1/organizations/638f5b102f5d17000144320f/image/63909c302f5d170001443214/web'
logo = 'https://staging-api.igrant.io/v2/onboard/image/63909c302f5d170001443214/web'
break;
case FRIA_ID:
issuer = 'Fria försäkringar'
logo = 'https://staging-api.igrant.io/v1/organizations/638f370c2f5d17000144320a/image/63909baf2f5d170001443213/web'
logo = 'https://staging-api.igrant.io/v2/onboard/image/63909baf2f5d170001443213/web'
break;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export const RequestAllCredentialsPage = (props: { onClose: any; open: boolean;
</div>
</Col>
<Col span={6} style={{ display: "flex", alignItems: "center", justifyContent: "center" }}>
<img src='https://staging-api.igrant.io/v1/organizations/638f5b102f5d17000144320f/image/63909c302f5d170001443214/web' style={{ width: "40px" }} alt="credential" />
<img src='https://staging-api.igrant.io/v2/onboard/image/63909c302f5d170001443214/web' style={{ width: "40px" }} alt="credential" />
</Col>
</Row>
</Card>
Expand All @@ -139,7 +139,7 @@ export const RequestAllCredentialsPage = (props: { onClose: any; open: boolean;
</div>
</Col>
<Col span={6} style={{ display: "flex", alignItems: "center", justifyContent: "center" }}>
<img src='https://staging-api.igrant.io/v1/organizations/638f370c2f5d17000144320a/image/63909baf2f5d170001443213/web' style={{ width: "40px" }} alt="credential" />
<img src='https://staging-api.igrant.io/v2/onboard/image/63909baf2f5d170001443213/web' style={{ width: "40px" }} alt="credential" />
</Col>
</Row>
</Card>
Expand Down
4 changes: 2 additions & 2 deletions src/views/company-views/components/viewcredentials/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ export const ViewCredentialsPage = (props: { onClose: any; open: boolean; showVi
break;
case 'Ecolabel':
issuer = 'Örnen, Sweden'
logo = 'https://staging-api.igrant.io/v1/organizations/638f5b102f5d17000144320f/image/63909c302f5d170001443214/web'
logo = 'https://staging-api.igrant.io/v2/onboard/image/63909c302f5d170001443214/web'
break;
case 'Real estate insurance':
issuer = 'Fria försäkringar, Sweden'
logo = 'https://staging-api.igrant.io/v1/organizations/638f370c2f5d17000144320a/image/63909baf2f5d170001443213/web'
logo = 'https://staging-api.igrant.io/v2/onboard/image/63909baf2f5d170001443213/web'
break;
}

Expand Down

0 comments on commit 1ded946

Please sign in to comment.