-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
revert: New Linked Wearables URN and mappings (#3142)
* Revert "fix: Editing new item URN (#3139)" This reverts commit bcd6063. * revert: New third parties URN
- Loading branch information
1 parent
a95931d
commit 7d1d2c4
Showing
47 changed files
with
482 additions
and
906 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
import { Mapping } from '@dcl/schemas' | ||
import { LinkedContract } from 'modules/thirdParty/types' | ||
|
||
export type Props = { | ||
mapping: Mapping | ||
contracts: LinkedContract[] | ||
contract: LinkedContract | ||
error?: string | ||
disabled?: boolean | ||
onChange: (mapping: Mapping) => void | ||
onChange: (mapping: Mapping, contract: LinkedContract) => void | ||
} |
Oops, something went wrong.