Skip to content

Commit

Permalink
Rename (#20134)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebmarkbage committed Oct 30, 2020
1 parent ffd8423 commit 39eb6d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class JSResourceReference {
constructor(exportedValue) {
this._moduleId = exportedValue;
}
getModuleID() {
getModuleId() {
return this._moduleId;
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/isValidElementType.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default function isValidElementType(type: mixed) {
// we don't know which Flight build this will end up being used
// with.
type.$$typeof === REACT_MODULE_REFERENCE ||
type.getModuleID !== undefined ||
type.getModuleId !== undefined ||
type.$$typeof === REACT_BLOCK_TYPE ||
type[(0: any)] === REACT_SERVER_BLOCK_TYPE
) {
Expand Down

0 comments on commit 39eb6d1

Please sign in to comment.