Skip to content

Commit

Permalink
chore: replace div with Fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenny Chung committed Apr 20, 2022
1 parent 29f3ea3 commit a80cb23
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import styled from 'styled-components';
import { Input } from 'components/Guilds/common/Form/Input';
import Avatar from 'components/Guilds/Avatar';
import { useEffect } from 'react';
import React, { useEffect } from 'react';
import { ActionEditorProps } from '..';
import { ethers } from 'ethers';
import useENSAvatar from 'hooks/Guilds/ether-swr/ens/useENSAvatar';
Expand Down Expand Up @@ -84,7 +84,7 @@ const Mint: React.FC<ActionEditorProps> = ({ decodedCall, updateCall }) => {
}
};
return (
<div>
<React.Fragment>
<Control>
<ControlLabel>
Recipient
Expand Down Expand Up @@ -128,7 +128,7 @@ const Mint: React.FC<ActionEditorProps> = ({ decodedCall, updateCall }) => {
</ControlRow>
</Control>
</ControlRow>
</div>
</React.Fragment>
);
};

Expand Down

0 comments on commit a80cb23

Please sign in to comment.