Skip to content

Commit 5129639

Browse files
committed
chore(issuer): replace args with props
1 parent af25dad commit 5129639

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/polymath-issuer/src/pages/providers/ApplyForm.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ const linkTooltip = (title: string) => (
6565
</Tooltip>
6666
);
6767

68-
export const ApplyFormComponent = args => {
69-
const { handleSubmit, onClose, networkId } = args;
68+
export const ApplyFormComponent = props => {
69+
const { handleSubmit, onClose, networkId } = props;
7070
return (
7171
<Form onSubmit={handleSubmit}>
7272
<Grid>

0 commit comments

Comments
 (0)