Skip to content

Commit d3cf31c

Browse files
crzypatchworkcrzypatchwork
authored andcommitted
latest
2 parents b9efba5 + 46166c1 commit d3cf31c

File tree

10 files changed

+6734
-36852
lines changed

10 files changed

+6734
-36852
lines changed

package-lock.json

Lines changed: 6297 additions & 36581 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/media-types/glb/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ export const GLBComponent = ({
4343
}
4444
}, [width, height])
4545
if (displayView) {
46-
console.log('profile', displayView)
4746
return (
4847
<div className={styles.container} ref={ref}>
4948
<model-viewer {...props} style={{ width, height }}>

src/components/media-types/html/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,6 @@ export const HTMLComponent = (props) => {
126126
}
127127
}
128128

129-
130-
console.log(onDetailView)
131129
if (!onDetailView) {
132130
return (
133131
<div className={classes}>

src/components/responsive-masonry/styles.module.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
background-clip: padding-box;
1010

1111
& > * {
12+
position: relative;
1213
display: block;
1314
margin-bottom: 5px;
1415
}

src/context/HicetnuncContext.js

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ class HicetnuncContextProviderClass extends Component {
9494
hDAO_curation: 'KT1TybhR7XraG75JFYKSrh7KnxukMBT5dor6',
9595
hDAO_marketplace: 'KT1QPvv7sWVaT9PcPiC4fN9BgfX8NB2d5WzL',
9696

97+
lastId: undefined,
98+
9799
subjktInfo: {},
98100
setSubjktInfo: (subjkt) => this.setState({ subjktInfo: subjkt }),
99101

@@ -422,25 +424,19 @@ class HicetnuncContextProviderClass extends Component {
422424
},
423425

424426
curate: async (objkt_id) => {
425-
await axios
426-
.get(process.env.REACT_APP_REC_CURATE)
427-
.then((res) => {
428-
return res.data.amount
429-
})
430-
.then((amt) => {
431-
Tezos.wallet
432-
.at(this.state.proxyAddress || this.state.v1)
427+
await Tezos.wallet
428+
.at(this.state.v1)
433429
.then((c) =>
434430
c.methods
435431
.curate(
436432
ls.get('hDAO_config') != null
437433
? parseInt(ls.get('hDAO_config'))
438-
: amt,
434+
:
435+
1,
439436
objkt_id
440437
)
441438
.send()
442439
)
443-
})
444440
},
445441

446442
claim_hDAO: async (hDAO_amount, objkt_id) => {

0 commit comments

Comments
 (0)