Skip to content

Commit

Permalink
fix: minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mohandast52 committed Aug 27, 2024
1 parent ef8e0db commit b0bf026
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ export const IpfsHashGenerationModal = ({
<span>
{/* TODO: fetch from middleware constant */}
<ul style={{ margin: 0 }}>
<li>{'ipfs://{IPFS_HASH}'}</li>
<li>https://gateway.autonolas.tech/ipfs/*</li>
<li>https://gateway.pinata.cloud/ipfs/*</li>
<li>https://*.arweave.net/</li>
Expand All @@ -236,7 +237,7 @@ export const IpfsHashGenerationModal = ({
</Flex>
}
>
<Input />
<Input placeholder="ipfs://" />
</Form.Item>
</Form>
</CustomModal>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export const FinishedRegistration = ({
className="mt-8"
>
{options.map((multisigAddress) => (
<div className="mb-12" key={`mutisig-${multisigAddress}`}>
<div className="mb-12" key={`multisig-${multisigAddress}`}>
<RadioLabel disabled={btnProps.disabled}>
{multisigAddress === isMultiSig && OPTION_1}
{multisigAddress !== isMultiSig && OPTION_2}
Expand Down Expand Up @@ -377,6 +377,7 @@ export const FinishedRegistration = ({
console.error(error);
} finally {
setIsSubmitting(false);
notifyError('Error occurred while updating multisig. Please try again.');
}
}}
{...getOtherBtnProps(STEP, {
Expand Down

0 comments on commit b0bf026

Please sign in to comment.