Skip to content

Commit

Permalink
fix: fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
KlausMikhaelson committed Dec 1, 2023
1 parent f13fad0 commit 107cf86
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ const AddWalletsInCreateGroup = ({ handlePrevious, onClose,groupInputDetails, gr
};

const createGroupService = async () => {
console.log("in create group service");
const groupInfo: GroupInfoType = {
groupName: groupInputDetails.groupName,
groupDescription: groupInputDetails.groupDescription,
Expand All @@ -53,7 +52,6 @@ const AddWalletsInCreateGroup = ({ handlePrevious, onClose,groupInputDetails, gr
};
const rules: any = checked ? criteriaStateManager.generateRule() : {};
const isSuccess = await createGatedGroup(groupInfo, rules);
console.log("groupInfo", groupInfo);
if (isSuccess === true) {
groupInfoToast.showMessageToast({
toastTitle: 'Success',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,7 @@ export const CreateGroupType = ({
</ScrollSection>
<Section gap="16px" flexDirection="column">
<Button width="197px" onClick={handleAddWallets}>
{/* {!loading && ''} */}
Nexts
{/* {loading && <Spinner size="20" color="#fff" />} */}
Next
</Button>
<InfoContainer label='Learn more about access gating rules' cta='https://push.org/docs/chat/build/conditional-rules-for-group/' />
</Section>
Expand Down

0 comments on commit 107cf86

Please sign in to comment.