Skip to content

Commit

Permalink
Merge pull request #681 from gofractally/main
Browse files Browse the repository at this point in the history
EdenOS Releases 0.3.1
  • Loading branch information
brandonfancher authored Mar 29, 2022
2 parents 1660922 + 3462b31 commit 5e54b83
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -482,3 +482,4 @@ jobs:
file: docker/eden-webapp.Dockerfile
tags: ${{ steps.prep.outputs.tags }}
context: .

2 changes: 1 addition & 1 deletion contracts/eden/src/eden-micro-chain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2130,7 +2130,7 @@ void clean_data(const subchain::eosio_block& block)
if (!status.status.active)
return; // skip if contract is not active

remove_expired_inductions(block.timestamp, status.status);
// remove_expired_inductions(block.timestamp, status.status);
}

bool dispatch(eosio::name action_name, const action_context& context, eosio::input_stream& s);
Expand Down
4 changes: 3 additions & 1 deletion packages/webapp/src/inductions/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ export const convertPendingProfileToMember = (
name: profile.name,
image: {
cid: profile.img,
url: ipfsUrl(profile.img),
url: profile.img.startsWith("blob:")
? profile.img
: ipfsUrl(profile.img),
attributions: profile.attributions || "",
},
bio: profile.bio,
Expand Down
2 changes: 1 addition & 1 deletion packages/webapp/src/members/components/member-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const MemberCard = ({ member, showBalance }: Props) => {
</Container>
<Container>
<MemberBio bio={member.profile.bio} />
{member.inductionVideo && (
{member.inductionVideo.url && (
<SocialButton
handle="Induction Ceremony"
icon={FaVideo}
Expand Down

0 comments on commit 5e54b83

Please sign in to comment.