Skip to content

Commit

Permalink
fix company data
Browse files Browse the repository at this point in the history
  • Loading branch information
eike-hass committed Aug 6, 2024
1 parent f7b9108 commit 00e5eef
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
15 changes: 15 additions & 0 deletions tooling/deploy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
mv ./.env ../.env
mv ./stronghold.hodl ../data/
mv ./stronghold_secret.txt ../data/
mv ./government-did-configuration.json ../data/
mv ./bank-did-configuration.json ../data/
mv ./insurance-did-configuration.json ../data/

scp ../.env [email protected]:/opt/selv/
scp ../data/stronghold.hodl [email protected]:/opt/selv/data/
scp ../data/stronghold_secret.txt [email protected]:/opt/selv/data/
scp ../data/government-did-configuration.json [email protected]:/opt/selv/data/static/government/did-configuration.json
scp ../data/bank-did-configuration.json [email protected]:/opt/selv/data/static/bank/did-configuration.json
scp ../data/insurance-did-configuration.json [email protected]:/opt/selv/data/static/insurance/did-configuration.json

sed -i -e 's/.selv.iota.org\//.selv.local:${HTTP_PORT}/g' ../.env
4 changes: 0 additions & 4 deletions web/src/components/DomainCheck.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ const DomainCheck = ({ result }: {
avatar={<CheckCircleTwoTone />}
title={item.url}
/></Popover>
<List.Item.Meta
avatar={<CheckCircleTwoTone />}
title={item.url}
/>
</List.Item>
)}
/>
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/Company/CompanyData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const CompanyData: React.FC = ({ history, match }: any) => {
did:iota:rms:0x4868d61773a9f8e54741261a0e82fc883e299c2614c94b2400e2423d4c5bbe6a <ExportOutlined />
</Link>
}><b>company.selv.iota.org</b></Popover></p> {/* TODO */}
<p>to <b>{state.COMPANY_HOUSE?.connectedDID}</b></p> {/* TODO */}
<p>to <b style={{wordBreak: "break-all"}}>{state.COMPANY_HOUSE?.connectedDID}</b></p> {/* TODO */}
<Form dataFields={emptyFields} onSubmit={onSubmit} submitLabel={t("actions.continue")} />
</section>
{
Expand Down

0 comments on commit 00e5eef

Please sign in to comment.